
function CountryChange(objCountry) {
 jumpto(objCountry.options[objCountry.selectedIndex].value);
}

function NewWindow(url,width,height) {
 var w = window.open(url,'','scrollbars=no,menubar=no,height='+height+',width='+width+',resizable=yes,toolbar=no,location=no,status=no');
}

function NewNamedWindow(url,width,height,title) {
 var w = window.open(url,title,'scrollbars=no,menubar=no,height='+height+',width='+width+',resizable=yes,toolbar=no,location=no,status=no');
}

function jumpto(x){
if (x != "") {
    window.open(x);
    return false;
    }
}

function cleartext(ele){
ele.value="";
ele.focus();
}

