<!--Hide JavaScript from Java-Impaired Browsers

function isIE4() {
  return(navigator.appName.indexOf("Microsoft") != -1 && (navigator.appVersion.charAt(0)=='4') );
}

function open_window(url,scroll,width,height)
	{
	OpenWin=window.open(url,"","top=50,left=50,scrollbars="+scroll+",resizable=yes,status=no,width="+width+",height="+height);
  	if (!isIE4() )
  		{
    	if(window.focus)
    		{
      		OpenWin.focus();
    		}
  		}
	}
//End Hiding Script-->