
// Pop Up function
function open_new_window2(p,w,h,t) {
h = h + 75;
w = w + 20;
dlg = window.open ("",p,"width="+ w +",height="+ h +",toolbar=no,location=no, directories=no,status=no,menubar=no,scrollbars=no,resizable=yes")
dlg.document.write ("<html><head><style type='text/css'>@page { size: landscape; }</style></head><BODY bgColor='#000' topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0'>")
dlg.document.write ("<center><br><form><input type=button value=' Close This Window ' onClick='javascript:window.close();'>&nbsp;&nbsp;<input type=button value=' PRINT THIS MAP ' onClick='javascript:window.print();' /></form>")
dlg.document.write ("<img src='images/"+ p + "." + t +" ' style='border:1px solid #caaf73'>")
dlg.document.write ("</center></BODY></html>")
dlg.document.close();
}


function open_new_windowMAP(p,w,h,t) {
h = h + 100;
w = 650;
dlg = window.open ("",p,"width="+ w +",height="+ h +",toolbar=no,location=no, directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
dlg.document.write ("<html><head><style type='text/css'>@page { size: landscape; }</style></head><BODY bgColor='#000' topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0'>")
dlg.document.write ("<center><br><form><input type=button value=' Close This Window ' onClick='javascript:window.close();'>&nbsp;&nbsp;<input type=button value=' PRINT THIS MAP ' onClick='javascript:window.print();' /></form>")
dlg.document.write ("<img src='images/homes/"+ p + "." + t +" ' style='border:1px solid #caaf73'>")
dlg.document.write ("</center></BODY></html>")
dlg.document.close();
}