var newWin = null;

function closeViewer() { if (newWin!=null && !newWin.closed) { newWin.close(); } }


function imageopen(iname,w,h)
{
closeViewer();

var myBars='directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no, width=' + w + ', height=' + h + ', resizable=no, left=' + (screen.width-w)/2 + ', top=' + (screen.height-h)/2 ;
newWin=window.open('','c4u',myBars);
newWin.document.writeln("<html><head><title>Punjab Police, Amritsar City</title></head>");
newWin.document.writeln("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
newWin.document.writeln("<table width='100%' cellpadding=0 cellspacing=0><tr align=center><td valign=middle><img src='images/" + iname + "'></td></tr></table>");
newWin.document.writeln("</body></html>");
newWin.document.close();
newWin.focus();
}

function chgbgcolor(obj, col) 
{
	obj.style.backgroundColor=col
}
