function submitForm(elem)
{
	document.getElementById(elem).submit();
}		

function regFormMainHide(elem)
{
	document.getElementById(elem).style.display='none';
}

function regFormMainShow(elem)
{
	document.getElementById(elem).style.display='';
}

function regFormAddressHide(elem)
{
	document.getElementById(elem).style.display='none';
}

function regFormAddressShow(elem)
{
	document.getElementById(elem).style.display='';
}

function myopen(adresa, width, height, index)
{
	window.open(adresa,index,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width=" + width + ",height=" + height);
}

function retypeValue(src, dst)
{
	document.getElementById(dst).value = document.getElementById(src).value;
}