function changeLan() {
  var intIndex = document.getElementById('changeLan').selectedIndex;
	var strHref =  document.getElementById('changeLan').options[intIndex].value;
  document.location.href = strHref;
}
function WriteFlash(DivID, text){
		var d = document.getElementById(DivID);
		d.innerHTML = text;
}
function openwin(url, tmp3, tmp4){
	scn_w = screen.availwidth;
	scn_h = screen.availheight;
	pos_x = (scn_w - tmp3)/2 - 20;
	pos_y = (scn_h - tmp4)/2;
	show3 = window.open( url,'show','width='+ tmp3 +',height='+ tmp4 +',top='+ pos_y +',left='+ pos_x +',resizable=0,scrollbars=auto,directories=0,toolbar=0,menubar=0');
	window.show3.focus();
}
function openwin2(url, tmp3, tmp4){
	scn_w = screen.availwidth;
	scn_h = screen.availheight;
	pos_x = (scn_w - tmp3)/2 - 20;
	pos_y = (scn_h - tmp4)/2;
	show4 = window.open( url,'show','width='+ tmp3 +',height='+ tmp4 +',top='+ pos_y +',left='+ pos_x +',resizable=1,scrollbars=1,directories=0,toolbar=0,menubar=0');
	window.show4.focus();
}
