var WindowObjectReference; // global variable

function openDisclaimer()
{
  WindowObjectReference = window.open("disclaimer.php",
        "WorldClassFlagsPop",
        "width=420,height=230,resizable,scrollbars=yes,status=1");
}

function openTerms()
{
  WindowObjectReference = window.open("terms-of-service.php",
        "WorldClassFlagsPop",
        "width=420,height=230,resizable,scrollbars=yes,status=1");
}

function openPrivacy()
{
  WindowObjectReference = window.open("privacy-policy.php",
        "WorldClassFlagsPop",
        "width=420,height=230,resizable,scrollbars=yes,status=1");
}

function openSearchHelp()
{
  WindowObjectReference = window.open("live-search-help.php",
        "WorldClassFlagsPop",
        "width=420,height=230,resizable,scrollbars=yes,status=1");
}
function toggleRightPane(showhide) {
	if (showhide=='show') {
		document.getElementById("rightpanel").style.display = 'block';
	} else {
		document.getElementById("rightpanel").style.display = 'none';
	}
}
function displayresultsbox() {
	document.getElementById("searchbox").style.display = 'block';
}
function openDir(form) { 

	var newIndex = form.state.selectedIndex; 

	if ( newIndex != 0 ) { 

		cururl = form.state.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 
