

function createNew(w,h,img) {

  var pgtitle = "Park Vue Inn"
  _w = window.open('','popup','width='+w+',height='+h+',resizable=no,top=150,left=150');
  _w.document.open();
  _w.document.write('<HTML><HEAD><TITLE>'+pgtitle+'</TITLE></HEAD>\n');
  _w.document.write('<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#006666" ALINK="#006666" VLINK="#006666"><CENTER>\n');
  _w.document.write('<IMG SRC="images/'+img+'" BORDER=0 ALIGN=bottom><BR>\n');
  _w.document.write('<A HREF="javascript:close();"><FONT SIZE="-1" FACE="Arial" COLOR="#666666">Close this window</FONT></A>\n');
  _w.document.write('</CENTER></BODY></HTML>');
  _w.document.close();
}
