window.onload = function()
{
	divr = document.getElementById('rdiv');
	divl = document.getElementById('ldiv');

	rh = divr.offsetHeight;
	lh = divl.offsetHeight;

	if(lh > rh) {
		divr.style.height = (lh)+'px';
	}
	else if(rh > lh)
	{
		divl.style.height = (rh-40)+'px';
	}
}

//header reszben levo nyitvatartasi adatok valtasa kattintasra
function changeContact(id)
{
	switch(id)
	{
		case 1: document.getElementById('cim2').style.display='none';
				document.getElementById('dcim2').style.display='none';
				break;
		case 2:
				document.getElementById('cim1').style.display='none';
				document.getElementById('dcim1').style.display='none';
				break;
	}
	document.getElementById('cim'+id).style.display='block';
	document.getElementById('dcim'+id).style.display='block';
}

function viewFlash(src, name, width, height)
{
	newwindow = window.open("", 'picwin', 'width='+width+',height='+height+',toolbar=0,scrollbars=0,location=0');
	newwindow.document.write('<html lang="hu"><head><title>Yamahazakar - '+name+'</title></head><body style="margin:0;padding:0;"><object width="'+width+'" height="'+height+'"><param name="movie" value="/'+src+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="/'+src+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed></object></body></html>');

	if (window.focus) { newwindow.focus(); }
	return false;
}

