function opensizedwin(link, w, h)  {
	popupWinex = window.open('http://www.vadviragret.hu/' + link,'','scrollbars=auto, width=' + (w+20) + ', height=' + (h+20) + ', left=' + ((screen.width/2)-w/2) + ', top=' + ((screen.height/2)-h/2));
}

/*************************************************/
function showSubMenu(i)  { // alert('show_lang');
	clearTimeout(this.timer);
	this.timer=setTimeout('showSubMenuDiv(' + i + ')','1');
}

function hideSubMenu(i)  { // alert('hide_lang');
	clearTimeout(this.timer);
	this.timer=setTimeout('hideSubMenuDiv(' + i + ')','600');
}

function showSubMenuDiv(i)  { // alert('show_lang');
	if ( i == 1 )
		j = 2;
	if ( i == 2 )
		j = 1;
	document.getElementById('sub_menu' + i).style.display = 'block';
	hideSubMenuDiv(j);
}

function hideSubMenuDiv(i)  { // alert('show_lang');
	document.getElementById('sub_menu' + i).style.display = 'none';
}

/*************************************************/
