﻿// JScript File

function newWin(urlo)
{
myWin=open(urlo,"view","width=660,height=750,status=yes, toolbar=auto,menubar=no,scrollbars=yes,resizable=yes,location=no");
}

function newWin2(urlo,nump)
{
window.open(urlo,nump,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=670,height=750");
}

Array.prototype.inArray = function (value) {
var i;
for (i=0; i < this.length; i++){
	if (this[i][0] == value) return true;
}
	return false;
};

function CheckCompare(idA){
	if(typeof acp=="object"){
		if(acp.inArray(idA))
			document.write('<img src="/image/tick2.gif" border=0 align=absmiddle alt="Уже добавлено в список сравнения">');
		else
			document.write('<a href='+wsURL+'/CompareListAdd.html?AddId='+idA+' rel=nofollow class=link2><img src="/image/plus.gif" border=0 align=absmiddle alt="Добавить в список сравнения"></a>');
	}else{
		document.write('<a href='+wsURL+'/CompareListAdd.html?AddId='+idA+' rel=nofollow class=link2><img src="/image/plus.gif" border=0 align=absmiddle alt="Добавить в список сравнения"></a>');
	}
}

function CheckFavorite(idA){
	if(typeof acp=="object"){
		if(!acp.inArray(idA))
			document.write('<br><img src="/image/star.gif" alt="" width="16" height="16" align="absbottom" style="margin-top:5px"/> <a href="'+wsURL+'/CompareListAdd.html?AddId='+idA+'">Добавить в избранное</a>');
	}else{
		document.write('<br><img src="/image/star.gif" alt="" width="16" height="16" align="absbottom" style="margin-top:5px"/> <a href="'+wsURL+'/CompareListAdd.html?AddId='+idA+'">Добавить в избранное</a>');
	}
}
