//--------------------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";
		}
	}
}

//--------------------Hírlevél regisztráció kis ablak-----------------------------
function Reg()
{

var newwin = window.open('','registration','width=400,Height=170,directories=no,menubar=no,scrollbars=no,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 = "hirlevel/hirlevelreg.php";

return false;
}
//--------------------Hibás böngész figyelmeztető ablak-----------------------------

function Bongeszo()
{

var newwin = window.open('','services','width=500,Height=270,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 = "bongeszo.php";

return false;
}

//--------------------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;
}

//--------------------Térképhez ablak-----------------------------

function Terkep(Kir)
{

var newwin = window.open('','maps','width=680px,height=660px,directories=no,menubar=no,scrollbars=no,resizable=yes');

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 = "terkep.php?kir="+Kir;

return false;
}

