function ShowMessage(num)
{
	switch(num)
	{
	case "1":
	alert("Autor:\t\t\tIvo Reich" +
	"\nLetztes Update:\t\t" + document.lastModified +
	"\nIhr Browser:\t\t" + navigator.appName +
	"\nEmpfohlene Browser:\tAlle");
	break;
	case "2":
	alert("War ja klar! ;-)");
	break;
	default:
	alert("Es ist ein Fehler aufgetreten!!!\nBitte benachrichtigen Sie den Betreuer dieser Website.");
	break;

	}
}
function LeaveSite(num)
{
	switch(num)
	{
	case "1":
	window.location = "http://www.reich-austria.com/index2.html";//////Home
	break;
	case "2":
	window.location = "http://www.reich-austria.com/scripts/index.html";//////JavaScripts
	break;
	case "3":
	window.location = "http://www.reich-austria.com/contact.html";//////Contact
	break;
	case "4":
	window.location = "http://www.reich-austria.com/scripts/samples/00001.html";//////Script00001
	break;
	case "5":
	window.location = "http://www.reich-austria.com/scripts/create_scr00001.html";//////Script00001 with own textes
	break;
	case "6":
	window.location = "http://www.kostenlose-javascripts.de";//www.kostenlose-javascripts.de
	break;
	case "7":
	window.location = "http://www.reich-austria.com/scripts/create_scr00001.html";
	break;
	default:
	ShowMessage("x"); //x == Error
	break;
	}
}
function Change(cur, ne)
{

document.getElementById(cur).style.visibility = "hidden";
document.getElementById(ne).style.visibility = "visible";

}
