function popupwindow(setfilename,setwindowtitle,setwidth,setheight) {
var win = window.open('','','border=0,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + setwidth + ',height=' + setheight + '');
	with (win.document)
	{
	writeln("<html><head><title>" + setwindowtitle + "</title></head><body style='margin:0px;padding:0px;'><table width='83%' height='83%' cellpadding='0' cellspacing='0' border='0'><tr><td align='center'><img src='" + setfilename + "' border='0'></td></tr></table></body></html>");
	}
}

function popupwindow2(setfilename,setwindowtitle,setwidth,setheight) {
var win = window.open(setfilename,'','border=0,toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=' + setwidth + ',height=' + setheight + '');
}