/* Language selector
--------------------------------------------------*/

function SelectLanguage()	{
	document.location.href = $("languages").value;
}


function popitup(url) {
	newwindow=window.open(url,'name','width=410,height=410');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup(url,text) {
	var text = escape(text)
	var height=510
		if(text=="undefined"){
		height=420	
		}
	newwindow=window.open('/templates/PopupPage.aspx?image=' + url + '&text=' + text,'name','width=420,height=' + height);
	if (window.focus) {newwindow.focus()}
	return false;
}

function popup(url,name,window_width,window_height) {
	window_left = (screen.width - window_width) / 2;
	window_top = (screen.height - window_height) / 2;
    newwindow=window.open(url, name, "toolbar=0,location=0,resizable=0,status=0,menubar=0,scrollbars=0,width=" + window_width + ",height=" +  window_height + ",top=" + window_top + ",left=" + window_left + "");
	if (window.focus) {newwindow.focus()}
	return false
}