function replacer(URL)
{
	if(URL) window.location = URL;
}


function menuchanger(Cella)
{
   menuke = document.getElementById(Cella);
   if(menuke.className == 'aktiv')
		menuke.className = 'inaktiv';
   else if(menuke.className == 'inaktiv')
		menuke.className = 'aktiv';
}


function get_innerheight()
{
	if (document.body.scrollHeight>0) // all 
	{
		scnWid = document.body.scrollWidth;
		scnHei = document.body.scrollHeight;
	}
	else if (self.innerHeight) // all except Explorer
	{
		scnWid = self.innerWidth;
		scnHei = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)		// Explorer 6 Strict Mode
	{
		scnWid = document.documentElement.clientWidth;
		scnHei = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		scnWid = document.body.scrollWidth;
//	scnHei = document.body.clientHeight;  <-- IGY KISEBB ERTEKET ADOTT VISSZA
		scnHei = document.body.scrollHeight;
	}
	return scnHei;
}


function myAjaxRequester(var_url, var_method)
{
	new Ajax.Request(var_url, {
	  method: var_method });
}
