function openNewWin(url, name, scr, w, h)
{
	var w1 = window.open(url, name, 'toolbar=no,location=no,status=no,menubar=no,resizable=no,directories=no,scrollbars=no,width='+w+',height='+h+'');
	w1.focus();
}

function openNewWin1(url, name, scr, w, h)
{
	var w1 = window.open(url, name, 'toolbar=no,location=no,status=no,menubar=no,resizable=no,directories=no,scrollbars=yes,width='+w+',height='+h+'');
	w1.focus();
}

<!--
function getAppVersion() {
    appname= navigator.appName;
    appversion = navigator.appVersion;
    majorver = appversion.substring(0, 1);
    if ( (appname == "Netscape") && ( majorver >= 3 ) ) return 1;
    if ( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) return 1;
  return 0;
}


function showImage(myurl,wi,he){
        focusWindow = window.open(myurl,'', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,top=100,left=140,width='+wi+',height='+he);
        if (getAppVersion()) focusWindow.focus();
}


<!-- 
function exposeItem(id)
{    
   obj = document.getElementById(id);
   if (obj != null)
    obj.style.display = (obj.style.display == "" ? "none" : "");            
}
//-->


<!--
    var NS = (navigator.appName.indexOf("Netscape")!=-1);
    var MS = (navigator.appName.indexOf("Microsoft")!=-1);
    var VER=parseInt(navigator.appVersion);
    var CSS=((MS&&VER>=4)||(NS&&VER>=5));
    var NS4=(NS&&VER==4);
    var NS6=(NS&&VER==5);
    var IE4=(MS&&VER==4);
    var IE5=(MS&&VER==5);
    var ver4= (VER>=4&&(MS||NS));
    var ver5=((MS&&VER>=5)||(NS&&VER>=5));
    //-->

	
<!--
// Sets cookie value. Expiration date is optional
//
function setCookie1(name, value, expire) {
  if ( expire == null ) {
    expire = new Date();
    expire.setTime(expire.getTime() + 2*365*24*3600*1000); // +2 years
  }
  document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
}

// Gets cookie value
//
function getCookie1(Name) {
  var search = Name + "=";
  if (document.cookie.length > 0) { // if there are any cookies
    offset = document.cookie.indexOf(search);
    if (offset != -1) { // if cookie exists
      offset += search.length;
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1) end = document.cookie.length;
      return unescape(document.cookie.substring(offset, end));
    }
  }
  return "";
}
//-->