function roPointer(status)
{
	if(status == "over")
	{
		document.body.style.cursor = "pointer";
	
	} else {
		
		document.body.style.cursor = "default";
	}
}

function picSwap(theImg) {
	var imgName = "/_images/products/" + theImg;
	document.formImg.prodImg.src = 	imgName;
}
