/*
	Java Script
	(c) 2002 Sitebot
*/

// === Big Image ===
function bigImage(id,w,h){
	bI=window.open('','bigImage','resizable=no,menubar=no,status=no,scrollbars=no,width=1,height=1');
	bI.close();
	bI=window.open('/image.php?id='+id,'bigImage','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h+',top=10,left=10');
	bI.focus();
}

// === Big Image2 ===
function bigImage2(id,w,h){
	bI=window.open('','bigImage','resizable=no,menubar=no,status=no,scrollbars=no,width=1,height=1');
	bI.close();
	bI=window.open('/image2.php?id='+id,'bigImage','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h+',top=10,left=10');
	bI.focus();
}

// === Add Basket ===
function addBasket(productId){
	formName="product"+productId;
	productCount=document.forms[formName].count.value;
	if(parseInt(productCount)>0){
		window.location.href= '/basket/add.php?id='+productId+'&count='+productCount+'&location='+window.location.href;
	}
return false;
}

function getHeight(){
	cHeight = Math.floor(document.getElementById('divAll').scrollHeight);
	pHeight = document.body.clientHeight;
	if (cHeight >= pHeight) {
		nHeight = cHeight;
	} else {
		nHeight = pHeight;
	}
	if (nHeight==0) nHeight=1;
	document.getElementById("left").style.height = nHeight - 179;	
	document.getElementById("content").style.height = nHeight - 187;
	document.getElementById("right").style.height = nHeight - 229;	
}

function chngMenu (id, on) {
	if (on)	{
		document.getElementById("menu"+id).className = "bkgMenuOn";
	} else {
		document.getElementById("menu"+id).className = "bkgMenu";
	}
}
