// JavaScript Document
var nwind = '';
function enlarge(url)
{
	var w = 640+24;
	var h = 480+24;
	var t = Math.round((screen.height - h) /2);
	var l = Math.round((screen.width - w) /2);
	nwind = window.open('enlarge.php?pic='+escape(url),'padidinta','top='+t+',left='+l+',width='+w+',height='+h+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes');
	nwind.focus();
}
	
	
function check_form(id,num,kalba)
{
	if (kalba == 'EN') { err = 'Please fill all required fields.'; } 
	else if (kalba == 'LT') { err = 'Užpildykite visus reikiamus laukus.'; }
	else if (kalba == 'RU') { err = 'Заполните все поля помеченые звёздочкой.'; }
	else if (kalba == 'LV') { err = 'Aizpildiet visus vajadzīgos lauciņus.'; }
	if (document.getElementById(id+"imone").value == '') { alert(err); return }
	if (document.getElementById(id+"vardas").value == '') { alert(err); return }
	if (document.getElementById(id+"tel").value == '') { alert(err); return }
	if (document.getElementById(id+"email").value == '') { alert(err); return }
	document.getElementById(id+"moduleform_"+num).submit();
}

var loc = '';

function churl(local_link)
{
	if (loc == '')
	{
		document.getElementById("transform2text").value = window.location;
		loc = document.getElementById("transform2text").value;
	}
	window.location=loc+local_link;	
}