function screen(f,w,h)
{
    newWindow = window.open(f,"screen","height=" + h + ",width=" + w + ",scrollbars=no,menubar=no,status=no,toolbar=no");
}

function popme_addressmap(win) {
	popwin=window.open(win,"","height=450,width=700,scrollbars=no,menubar=no,status=no,toolbar=no")
}

function openWindow(newURL,param) {
  if (param == null) param='width=620,height=560';
	newWindow = window.open(newURL, 'newWin', param);
}

function doFormSubmit(value, form)
{

   
    var browser = navigator.appName;
    var version = parseInt(navigator.appVersion);

    if(browser == "Netscape" && version <= 4)
    {
        form.submit();
    } else {
        document.getElementById(value).submit();
    }
}

function multiImageSubmit(field, formname, form)
{

    var browser = navigator.appName;
    var version = parseInt(navigator.appVersion);

    if(browser == "Netscape" && version <= 4)
    {
        form[field + ".x"].disabled = 0;
        form[field + ".x"].value="99";
        form.submit();
    } else {
        document.getElementById(field + ".x").disabled = 0;
        document.getElementById(field + ".x").value = "99";
        document.getElementById(formname).submit();
    }

}

