//--------------------Onclick display on/off-----------------------------

function Show(obj)
{
	if(document.getElementById)
	{
	var el = document.getElementById(obj);

		if(el.style.display == "none")
		{
			el.style.display = "block";
		}
		else
		{
			el.style.display = "none";
		}
	}
}


//--------------------Karbantartáshoz ablak-----------------------------

function Services(Page)
{

var newwin = window.open('','services','width=800,Height=600,directories=no,menubar=no,scrollbars=yes,resizable=no');

newwin.document.write("<body></body>");

var ww;
var wh;

if(window.innerWidth) 
	{
	ww=newwin.outerWidth;
	wh=newwin.outerHeight;
	}
 else
	{
	ww=newwin.document.body.clientWidth;
	wh=newwin.document.body.clientHeight;
	}

var sw = screen.availWidth;
var sh = screen.availHeight;

newwin.moveTo(Math.round((sw-ww)/2),Math.round((sh-wh)/2));

newwin.location.href = Page;

return false;
}
