// JavaScript Document
// <!--
function popitup(url) {
	var newwindow=window.open(url,'name','height=385,width=370,status=0,scrollbars=1,toolbar=0,location=0,menubar=0,resizable=0');
	if (window.focus) {newwindow.focus()}
	
}

function wallpaper(url,w,h)
{
	var newwindow=window.open(url,'name','height='+screen.height+',width='+screen.width+',status=0,scrollbars=1,toolbar=0,location=0,menubar=0');
	if (window.focus) {newwindow.focus()}
	

}
function linkPage()
{
	var elSelector = document.getElementById('regionalSelector');
	var url = elSelector.options[elSelector.selectedIndex].value;
	location.assign( url );
}

// -->