var ErrMsg = "Keep an eye out for new designs";

function openWindow(documentName) {
	
   window.open(documentName, "looker", "width=600,height=480,center,toolbar=yes,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,copyhistory=0");
}
function addtocart(sid){
    document.frm.action="savecart1.asp";
    document.frm.id.value=sid;
    document.frm.submit();
}
function viewcart() {
	window.location="viewcart.asp";
	}
function viewimage(imgname) {
   window.open("vwimage.asp?id=" + imgname, "looker", "width=350,height=400,center,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,copyhistory=0");
}

        function disableRightClick(btnClick)
        {
        if (navigator.appName == "Netscape" && btnClick.which == 3) // check for netscape and right click
        { 
        alert(ErrMsg);
        return false;
        }
        else if (navigator.appName =="Microsoft Internet Explorer" && event.button == 2) // for IE and Right Click
        {
        alert(ErrMsg);
        return false;
        }
        }
        //document.onmousedown = disableRightClick;
