function Showinwin(src, w, h, title)
{
var s = window.open('', '', 'width='+w+',height='+h+',fullscreen=0, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=no, resizable=0');

s.document.open();
s.document.write('<head><title>'+title+'</title></head><body background='+ src + ' bgcolor="#D9D9D9" leftmargin=0 topmargin=0></body>');
s.document.close();
s.moveTo((screen.width - w) / 2,(screen.height - h) / 2);
}

