function popupPreview(urltxt, wid, high)
{
    wid+=0;
    high+=0;
    var flagvar=0;

    try{
        confirmWin.close();
        confirmWin=window.open(urltxt, "kwu",
                "height=" +high+ ",width="+wid+",directories=no,location=no,menubar=no," +
                "resizable=yes,status=no,toolbar=no,scrollbars=yes");
    }
    catch(e)
    {
        confirmWin=window.open(urltxt, "kwu",
                "height=" +high+ ",width="+wid+",directories=no,location=no,menubar=no," +
                "resizable=yes,status=no,toolbar=no,scrollbars=yes");
    }
    if (window.confirmWin)
    {
        if (window.focus)
        {
            if ((navigator.appName.indexOf("Microsoft Internet Explorer")!=-1)
                    &&
                (navigator.appVersion.indexOf("4.") != -1)
                    &&
                (parent.length>0))
            {
                window.confirmWin.close();
                flagvar=1;
                timevar = setTimeout("openit(urltxt)", 300);
            }
            else
            {
                confirmWin.focus();
            }
        }
        else
        {
            if (navigator.appName.indexOf("Microsoft Internet Explorer") != -1)  // If this is a MSIE Browser
            {
                if (navigator.appVersion.indexOf("3.") != -1)  // MSIE 3.x
                {
                    if (isLoaded == true)
                    {
                        alert("If the large image does not pop up, press the 'Product Close-up' tab in your task bar, or locate the image browser behind your open window." );
                        return;
                    }
                    else
                    {
                        alert("If the Site Menu bar does not pop up, press the 'Product Close-up' tab in your task bar, or locate the image browser behind your open window." );
                        return;
                    }
                }
            }
        }
    }
    else
    {
        confirmWin = window.open(urltxt, "kwu",
                "height=" +high+ ",width="+wid+",directories=no,location=no,menubar=no," +
                "resizeable=no,status=no,toolbar=no");
        var isLoaded = true;
    }

    // This is important for Netscape 2.0 to enable the opener property
    if (flagvar!=1)
    {
        if (confirmWin.opener == null)
        {
            confirmWin.opener = self;
        }
    }
    wid=0;
    high=0;
}

var window_id = [0,0,1];
var tnode = [0,1,2];
var tnode_status = [0,0];
var num_windows = 2;
var process = "";


function doProcessing() {
	if(null!= document.forms[0].elements['formSubmitted']){
		document.forms[0].elements['formSubmitted'].value = 'Y';
	}
    document.getElementById('submitButton').className = 'thide';
    document.getElementById('processingindex').className = 'tshow';
}

function doProcessing12() {
    document.getElementById('submitButton').className = 'thide';
    document.getElementById('processingindex').className = 'tshow';
}

function changeFormProgram() {
	if(null!= document.forms[0].elements['formSubmitted']){
		document.forms[0].elements['formSubmitted'].value = 'N';
	}
	document.forms[0].submit();	
}



//change the state to blank if country is not US or Canada

function CNonChange()
{
    if ( document.form.CN.value != "US" && document.form.CN.value != "CA" ) {
        document.form.SP.value = "ZZZZ";
    }

}

// change the state to match the country
function SPonChange()
{
    var country = document.form.SP.value.substring(0,2);

    if(country == "US")  {
        document.form.CN.value = "US";
    } else if(country == "CA"){
        document.form.CN.value = "CA";
    } 
}

function openWin(URL) {
    newWindow=window.open(URL, 'programs','toolbar=no,width=550,height=500,directories=0,status=0,scrollbars=1,resizable=0,menubar=0,location=0,screenX=100,screenY=75,left=100,top=75,copyhistory=0');
}


