// JavaScript Document
function DisplayInfo(formElement)
{
	var info = document.getElementById(formElement);
	if(info.style.display == "none" || info.style.display=="")
 	{ info.style.display = "block"; }
		
	else{ info.style.display = "none"; }
}

function DisplayDropDown(formElement, tableElement)
{
	var info = document.getElementById(formElement);
	info.style.display = "block";
	document.getElementById(tableElement).focus();
}

function PopUp(pageName, pageTitle)
{
	window.open(pageName, pageTitle, 'location=0,toolbar=0,titlebar=0,scrollbars=0,resizable=0,menubar=0,status=1,width=600,height=260');
}

function changeCountry()
{
	var ctn = document.getElementById('id_ctn');
	var choice = ctn.options[ctn.selectedIndex].value;
	var ctncode = document.getElementById('id_ctncode');
	if( ctn.selectedIndex == '0') { ctncode.value = ""; }
	else { ctncode.value = choice; }
}
