function PopupImg(imgURL,imgTitle) { 
	window.open( "http://www.hanglide.com/img_win.php?img="+imgURL+"&title="+imgTitle,"myWin","toolbar=0,resizable=1,height=200,width=200");
} 

function FitWin() { 
	var NS = (navigator.appName=="Netscape")?true:false;
	iWidth = (NS)?window.innerWidth:document.body.clientWidth; 
	iHeight = (NS)?window.innerHeight:document.body.clientHeight; 
	iWidth = document.images[0].width - iWidth; 
	iHeight = document.images[0].height - iHeight;
	iHeight = iHeight + 18;
	window.resizeBy(iWidth, iHeight); 
	self.focus(); 
}