function resizeWindow() {
	if (document.images) {
	if (windowHandle.document.images.length == 1) {
		if (document.layers) windowHandle.resizeTo(windowHandle.document.images[0].width+10,windowHandle.document.images[0].height+10)
	else if (document.all) windowHandle.resizeTo(windowHandle.document.images[0].width+20,windowHandle.document.images[0].height+20)
		}
	else 
		setTimeout('resizeWindow()',500);
	}
}

function PopupPic(sPicURL) { 
     window.open( "nopop.html?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200"); 
   } 
