function openWindow(page,width,height,rp){
if (rp == null) {rp = '../';}
newwin=window.open('','newin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height)
window.newwin.moveTo(30,30)
newwin.document.write ('<FRAMESET ROWS="52,100%" border="0">');
newwin.document.write ('<FRAME marginheight="3" marginwidth="10" name="other" scrolling="no" src="' + rp + 'photos/photohd.html">');
newwin.document.write ('<FRAME name="destination" scrolling="no" SRC = "' + rp + 'photos/' + page + '">');
newwin.document.write ('</FRAMESET>');
newwin=null;
}