function isIE4(){
	if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) {
		return true;
	} else {
		return false;
	}
}

function isN4(){
	if (navigator.appName == "Netscape" && parseInt(navigator.appVersion)>=4) {
		return true;
	} else {
		return false;
	}
}

function resizeWin(){

	photowidth = document.wd.width+124;
	document.wd.style.display = "none";
	if(!isIE4() && !isN4()){
		photoheight=document.body.scrollHeight + 195;	
	}else{
		photoheight = document.hg.height+195;
	}	
	document.hg.style.display = "none";
	window.resizeTo(photowidth,photoheight+120);
	
	window.focus();
}

