function setMouseOv(oImg){
//	alert(oImg.id);
	oImg.src="./img/"+oImg.id+"_ov.png";
}
function setMouseOut(oImg){
	oImg.src="./img/"+oImg.id+"_ot.png";
}
//pop up start
function OpenWin(URL,width,height) {
	var str,width,height;
	str="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,";
	str=str+"width="+width;
	str=str+",height="+height+"',top=10,left=10";
	window.open(URL,'pop',str);
}
function openQuickView(prdid) {
	getObject(prdid).style.zIndex = 999;
	getObject(prdid).style.visibility="visible";
}
function closeQuickView(prdid) {
	getObject(prdid).style.visibility="hidden";
}
function getObject(objectId) {
	if(document.getElementById && document.getElementById(objectId)) {
		return document.getElementById(objectId);
	}else if (document.all && document.all(objectId)) {
		return document.all(objectId);
	}else if (document.layers && document.layers[objectId]) {
		return document.layers[objectId];
	} else {
		return false;
	}
}
//pop up end