function popup(mylink, windowname)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=600,height=800,scrollbars=yes');
	return false;
}

function getLocation(formName,sel) {
	var  fieldValue, localeValue, hrefTarget,objTest,bolTestResult;
	objTest = /_none/;
	fieldValue = sel.options[sel.selectedIndex].value;
	 
	if ( fieldValue == "" )
	{
		alert('Please select a location')
	} else {
		location.href="http://www.mojortk." + fieldValue + "/leica-web/";
	}
	return false;
}
