﻿// JScript File
function ResetClick()
    {
        var e1 = document.getElementById("ccTxtUN");
        var e2 = document.getElementById("ccTxtPW");
        
        e1.value = ""; e2.value = ""; 
        e1.focus();
        
        document.getElementById("lblMsg").style.visibility = "hidden";
        document.getElementById("ccValRFV_UN").style.visibility = "hidden";
        document.getElementById("ccRFV_PWD").style.visibility = "hidden";
    }
    function ClientValidation()
    {
        var lbl= new String();
        lbl = document.getElementById("valSum").style.visibility;
        if(lbl.toLowerCase()=="visible" || lbl == "")
        {
            document.getElementById("lblMsg").style.visibility = "hidden";   
        }
        else
        {
           document.getElementById("lblMsg").style.visibility = "visible";
        }  
    }   
    
    function CheckChildWindows()
    {
        var hfcw = document.getElementById("hfChildWindow");
        var wname = window.name; wname = (wname == "" ? null : wname);
        
        if ((window != window.parent) && (wname == null)) // Administration Inner Frame
        {
            hfcw.value = "1";
            window.parent.location.href = window.location.href;
        }
        else if ((window == window.parent) && (wname != null)) // Popup Windows
        {
            hfcw.value = "1";
            window.close();
        }  
    }

    function OpenMap(domestic)
    {
        if(domestic=='1')
            window.open('http://www.interserve.travel/map/locations.htm?int=false','','width=1200,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes,top=10,left=10');
        else
            window.open('http://www.interserve.travel/map/locations.htm','','width=1200,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes,top=10,left=10');
//        if(domestic==1)
//            window.open('map/locations.htm?int=false','','width=1200,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
//        else
//            window.open('map/locations.htm','','width=1200,height=650,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
    }
