function openWin(url, w, h)
{ 	
	browserVer = parseInt(navigator.appVersion);
	
	if (browserVer>= 3) 
	{
		newWin = window.open(url,'newWin'+ w + h,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h);
		if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
			setTimeout('newWin.focus()',10);
		return(false);					
	}		
	else
	{
		return(true);
	}  
}

