/********************************************************************/
// for various pop up windows
/********************************************************************/
var win = null;
function Popup(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	scroll = (!scroll) ? "yes" : scroll;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
	if(w && h) {
		win = window.open(mypage,myname,settings);
	} else {
		win = window.open(mypage,myname);
	}
	win.focus();
	return false;
}

function country_popup() {
	countrySelect = document.getElementById('avivaLayoutCountry');
	sel = countrySelect.selectedIndex;
	url = countrySelect[sel].value;
	return Popup(url, '_blank', '417', '530', 'no');
}