
function fncountry() {
	box = document.forms[0].ddlCountry;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}

function fnWhatsThis(varId){
	objSubWindow = window.open("help.aspx?id=" + varId,"subWindow","width=200,height=230,scrollbars=no");
}		
