function doPho(my_image,my_text) {	phowin = window.open('','phowin','height=490,width=640');	phowin.focus();	phowin.document.open();	phowin.document.write('<html><head><title>' + my_text + '</title></head><body bgcolor="#000000" onload="document.title=\'' + my_text + '\'">');	phowin.document.write('<div align="center"><table border="0" height="100%"><tr><td valign="middle">');	phowin.document.write('<img src="' + my_image + '" alt="' + my_text + '" />');	phowin.document.write('</td></tr></table></div></body></html>');	phowin.document.close();	return false;}
