<!-- Begin of the newWindow2.js script
// 10/30/04 by Hiep Nguyen


var bottom_bar = "HDN Photography";
var background_pic = "pic/pic_bg.gif";  // background picture

//DO NOT CHANGE THIS LINE
//------------------------
// H = window-height, W = window-width, INPUT = pictureFilename
function newWindow (INPUT, W, H) {

W = "620";
H = "620";


//DO NOT CHANCE THE FOLLOWING LINES
//-----------------------------------
//--------- var W and H ----
mywin=window.open("", "",' width='+W+',height='+H+',menubar=no,toolbar=no,location=no,scrollbars=yes,resizable=yes,dependent=no, left=0, top=0')

mywin.document.open()

mywin.document.write('<HTML><HEAD>\n')
mywin.document.write('<TITLE>HDN Photography: The lastest picture</TITLE>\n')

mywin.document.write('<link rel=StyleSheet href="script/new_style.css" type="text/css" media="screen">\n')

mywin.document.write('</HEAD>\n')
//------- var background_pic ----
mywin.document.write('<BODY background="'+background_pic+'" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">\n')

mywin.document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">\n')
mywin.document.write('  <tr align="center">\n')
mywin.document.write('    <td valign="middle">\n')
// Picture -------------------------------------------
//mywin.document.write('       <A href="javascript:history.back()"><img src="'+INPUT+'" border="0" alt="click on image to go back" target="rightpage"></a>\n')
mywin.document.write('       <A href="javascript:window.close()"><img src="'+INPUT+'" border="0" alt="click on image to go back" target="rightpage"></a>\n')

mywin.document.write('     </td>\n')
mywin.document.write('   </tr>\n')
mywin.document.write('</table>\n')

mywin.document.write('</BODY>\n')
mywin.document.write('</HTML>\n')

mywin.document.close();
window.status="HDN Photography: The latest picture";
mywin.focus();

}

//Display at the bottom bar
window.status= bottom_bar;

//  End -->