function picView(pic, message){
	w=screen.availWidth-10;
	h=screen.availHeight-30;
	x='scrollbars,resizable,width='+w+',height='+h+',left=0,top=0';

	s= '<html><head><title>Image Viewer:' + message;
	s+='</title><style fprolloverstyle>A:hover {color: #FF0000}</style></head>';
	s+='<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0>';
	s+='<p align="center" id="imgloading"><img border="0" src="/images/loading.gif">';
	s+='<p align="center"><IMG SRC=' +pic+' alt="Click on me to CLOSE..." ';
	s+='onclick="window.close();window.event.cancelBubble=true" ';
	s+='onload="imgloading.style.visibility=' + "'" + 'hidden' + "' " + '" ' ;
	s+='style="CURSOR: hand"><br>'
	s+='<a href="javascript:window.close();"><font face="Verdana" size="1" color="#C0C0C0">[Click image to return...]</font></a>'
	s+='</body></html>';
	win=window.open('','_blank',x);
	win.document.write(s);
}
