	function PopupPic(sPicURL, iWidth, iHeight) {
		//Ensure we have the height and width values before trying to use them
		if ( iWidth.length > 0 && parseInt(iWidth) > 0 && iHeight.length > 0 && parseInt(iHeight) > 0 )
		{
			window.open( "popup.asp?"+sPicURL, "", "resizable=1,HEIGHT=" + iHeight + ",WIDTH=" + iWidth + ""); 
		}
		else {
			window.open( "popup.asp?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
		}
	}