//-----------------------------------------------------------------------------
function InfoWindow(url, name, w, h)
{
	var flags = "height=" + h + ",width=" + w + ",scrollbars=no,status=no,location=no,directories=no,resizable=no";
	window.open(url, name, flags);
}

//-----------------------------------------------------------------------------
function L(lang)
{
	if( document.form1.lang.value != lang ) {
		document.form1.lang.value = lang;
		document.form1.submit();
	}
}
