<!--
function tableview(strgroup,strstart,strend,strshow) {
	for (i = strstart; i <= strend; i++) {
		eval( strgroup + '_'  + i).style.display = "none"
	}
		eval( strgroup + '_' + strshow).style.display = ""
}
//-->

<!--
function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")
//-->

<!-- Begin
function popUp(ImageID,ImageType,ProductID,ProductName) {
day = new Date();
id = day.getTime();

if (ImageType=="top") {widthval=450};
if (ImageType=="front") {widthval=700};
if (ImageType=="front_2") {widthval=450};

eval("page" + id + " = window.open('/modules/imageview.asp?ImageID=" + ImageID + "&ImageType=" + ImageType + "&ProductID=" + ProductID + "&ProductName=" + ProductName + "', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + widthval + ",height=630');");
}
// End -->