function NewWindow(mypage, myname, w, h, scroll, res)
{
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+res;
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion)>=4)
	{
		win.window.focus();
	}
}
function smilang()
{
  width = 350;
  height = 400;
  url = "index.php?popup=1&id=smilang_help";
  win = NewWindow(url, 'smilang', width, height, 'yes','no');
}
function anfahrt()
{
  width = 250;
  height = 300;
  url = "templates/miro/anfahrt.html";
  win = NewWindow(url, 'Anfahrt', width, height, 'no','no');
}
function bbcode()
{
  width = 550;
  height = 400;
  url = "index.php?popup=1&id=bbhelp";
  win = NewWindow(url, 'bbcode', width, height, 'yes','no');
}
function tdfadein(aobject, linkcolor, bg)
{
	aobject.className=bg;
	aobject.style.color=linkcolor;
	if (document.all)
	{
		aobject.style.cursor = "hand";
	}
	else
	{
		aobject.style.cursor = "pointer";
	}
}

function tdfadeout(aobject, linkcolor, bg)
{
	aobject.className=bg;
	aobject.style.color=linkcolor;
}
function ToggleFrontNews (id)
{
	if (document.getElementById("FrontNewsRow_" + id).style.display == 'none')
	{
		document.getElementById("FrontNewsImg_" + id).src = "images/icons/minus.gif";
		document.getElementById("FrontNewsRow_" + id).style.display = "";
		document.getElementById("FrontNewsImg_" + id).alt = "+";
	}
	else
	{
		document.getElementById("FrontNewsImg_" + id).src = "images/icons/plus.gif";
		document.getElementById("FrontNewsRow_" + id).style.display = "none";
		document.getElementById("FrontNewsImg_" + id).alt = "-";
	}
}
function ToggleFrontServer (id)
{
	if (document.getElementById("FrontServerRow_" + id).style.display == 'none')
	{
		document.getElementById("FrontServerImg_" + id).src = "images/icons/minus.gif";
		document.getElementById("FrontServerRow_" + id).style.display = "";
		document.getElementById("FrontServerImg_" + id).alt = "+";
	}
	else
	{
		document.getElementById("FrontServerImg_" + id).src = "images/icons/plus.gif";
		document.getElementById("FrontServerRow_" + id).style.display = "none";
		document.getElementById("FrontServerImg_" + id).alt = "-";
	}
}

function confirmbox(id, action, message)
{
	var x = confirm( message );
	if(x == true)
  	{
  	document.location.href="index.php?action=" + action + "&id=" + id;
  	}
  	if(x == false)
	{
	history.back(-1);
	}
}
function wechsel(select,bild)
{
    Bildname=Formular[select].value;
    document[bild].src=Bildname;
}
function galerie_k(image, height, width)
{
  width = width+100;
  height = height+100;
  url = "index.php?popup=1&id=galeriek&image="+image+"&height="+height+"&width="+width;
  win = NewWindow(url, "Galerie", width, height, 'no','yes');
}

