function openpopup(title,menuid,imageid){
	popup=window.open('/gallery.php?menuid=' + menuid + '&imageid=' + imageid, 'popup', 'toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, width=5, height=5, top=100, left=200');
	return;
}
function openpopup2(title,menuid,imageid){
        popup=window.open('', 'popup', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=5, height=5, top=100, left=200');
        popup.document.write('<html><head><title>'+title+'</title></head>'+'<'+'body bgcolor="#cccccc" onload="javascript:self.focus();"><center>'+'<'+'img onClick="javascript:self.close();" onLoad="javascript:self.resizeTo(this.width+32,this.height+65);" src="/image.php?page='+menuid+'&imageid='+imageid+'" border=0></center></body></html>');
        popup.document.close();
        return;
}
function openpopup3(title,menuid,productimageid){
        popup=window.open('', 'popup', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=5, height=5, top=100, left=200');
        popup.document.write('<html><head><title>'+title+'</title></head>'+'<'+'body bgcolor="#cccccc" onload="javascript:self.focus();"><center>'+'<'+'img onClick="javascript:self.close();" onLoad="javascript:self.resizeTo(this.width+32,this.height+65);" src="/image.php?page='+menuid+'&productimageid='+productimageid+'" border=0></center></body></html>');
        popup.document.close();
        return false;
}

