function base_GoToCountry(form){
var inCountry = document.getElementById("selectCountry");
	window.location = inCountry.options[inCountry.selectedIndex].value;
}

function base_GoToLanguage(form){
var inLanguage = document.getElementById("selectLanguage");
	location = inLanguage.options[inLanguage.selectedIndex].value;
}

function toggleHelp(){
	if(document.getElementById('helpDiv').style.display == "block"){
		document.getElementById('helpDiv').style.display = "none";
		document.getElementById('helpDiv').style.display = "none";
		}
	else{
		document.getElementById('helpDiv').style.display = "block";
		document.getElementById('searchDiv').style.display = "none";
		}
	}

function toggleSearch(){
	if(document.getElementById('searchDiv').style.display == "block"){
		document.getElementById('searchDiv').style.display = "none";
		document.getElementById('helpDiv').style.display = "none";
		}
	else{
		document.getElementById('searchDiv').style.display = "block";
		document.getElementById('helpDiv').style.display = "none";
		}
	}

function base_ExitPopup(inURL){
window.open(inURL,"","width=450,height=420")
}

function base_WinClose(){
window.parent.close;
}

function base_LaunchPopup(inURL){
window.open (inURL,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=550,height=400');
}

function base_LaunchLink(inURL, inWidth){
window.open (inURL,'','toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=820,height=620');
}

function base_WinPrint(){
window.print();
}
