// JavaScript Document
var thisImg = "";

function changeCat(cid) {
	if (cid != "0")
		window.location = 'products_list.php?cid='+cid;
	else
		window.location = 'products.php';
}

function changeImg(imgNo) {
	this.thisImg = imgNo;
	document.getElementById("largeImg").innerHTML = eval("img"+imgNo);
}

function enlargeImg() {
	MM_openBrWindow(eval("filePath"+thisImg),'','status=yes,scrollbars=yes,width='+eval("fileWidth"+thisImg)+',height='+eval("fileHeight"+thisImg))	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}