<!-- Web Site:  http://www.riverinn.com.au -->

var faux = null;
var pic = new Image();

function floorplans(pic) {
  faux = window.open('','Photosets','dependent,resizable,top=20,left=20,scrollbars,width=725,height=710');
  var fd = faux.document;
  fd.open();
  fd.write('<html><head><title>River Inn Conference Floor Plans</title></head>');
  fd.write('<body bgcolor="#FFFFFF" text="#000000" onLoad="window.focus()" marginheight="5" marginwidth="5" topmargin="5" leftmargin="5">');
  fd.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">');
  fd.write('<tr><td align="center" valign="middle"><img src="' + '../images/' + pic + '.gif" border=0></td></tr>');
  fd.write('</table></body></html>');
  fd.close();
}

function blowOut() {
  if (faux != null && faux.open) faux.close();
}
window.onfocus=blowOut;