function MM_openBrWindow(theURL,winName,features) { //v2.0
  mywindow = window.open(theURL,winName,features);
  mywindow.moveTo("right","top");

}
//-->
function setParentItemCount(numItems){
   if(document.getElementById("cart_item_count"))
      document.getElementById("cart_item_count").innerHTML = numItems;
}
function setParentCartTotal(total){
   if(document.getElementById("cart_total"))
      document.getElementById("cart_total").innerHTML = total;
}

var lastID = 0;

function changepic(showpic,whichImg,itemID) {
if (lastID > 0) {
document.getElementById(lastID).className = "thumbNormal";
}
	document.images["mainpic"].src="/virt/productphotos/"+showpic;
	document.getElementById(whichImg).className = "thumbHighlighted";
	document.getElementById('mainpicURL').href="javascript:MM_openBrWindow('/includes/GetPhotos.asp?ID=" + itemID + "&img=" + whichImg + "','ImageCart','scrollbars=no,width=525,height=700')";
	//document.getElementById(whichImg).style.borderColor="red";
	//document.getElementById(whichImg).style.borderStyle="solid";
	//document.getElementById(whichImg).style.borderWidth="thin";
lastID = whichImg;
	
}


