/*
function to open new window and display full size image
*/
function viewPhoto(myImage, myWidth, myHeight, origLeft, origTop) {
	
	myHeight += 100;
	myWidth += 50;
	
	imgWin = window.open(myImage,'image','height=' + 
		myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=hello,' + 
		'menubar=no, scrollbars=yes, resizable=yes');
	
	imgWin.resizeTo(myWidth+50, myHeight+100);
	imgWin.moveTo(origLeft, origTop);
	imgWin.document.write('<html><head><title></title>');
	imgWin.document.write('<link rel=stylesheet href="style/blakestar.css" type="text/css">');
	imgWin.document.write('</head><body class="viewphoto"><br/><br/>');
	imgWin.document.write('<img src="'+myImage+'"/>');
	imgWin.document.write('<br/><br/><a href="#" onclick="javascript:self.close();">Close window</a>');
	imgWin.document.write('</body></html>');
	imgWin.focus();
}