var newWin



function makePopup() {

	newWin = window.open("","popup", "width=808, height=700, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizeable=no");

}



function writeContent(photoSrc,photoW,photoH) {

	makePopup();

	var newContent = '<Html><Head></Head><Body bgcolor="#ffffff" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" link="#000000" alink="white" text="#000000"><Table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><Tr height="100%"><Td valign="middle" align="center" width="100%" height="100%">';

	var imgStr = '<A Href="#" onclick="self.close();"><Img src="';

	imgStr += photoSrc

	imgStr += '" width="' + photoW + '" height="' + photoH + '" border="0"></A>'

	newContent += imgStr

	newContent += '<Br><Br><Font face="Verdana" size="2"><A href="#" onclick="self.close();">click to close this window</A></Font><Br></Td></Tr></Table></Body></Html>';

	newWin.document.write(newContent);

	newWin.document.close();

	newWin.focus();

}

