// This function is used to open product pictures

function openWindow(file, name, width, height)
{
	if(navigator.appName === "Netscape") 
    {
        width += 20;
        height += 20;
    } 
    else
    { 
		height += 20;
    }
    
	var win = window.open(file, name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+'');
	win.focus();
}