/***************************/
/* ©2006 despecial.com */
/***************************/

function show(elementname,show) {
	target = document.getElementById(elementname);
	if (show == 1) target.style.display = "block";
	else target.style.display = "none";
}

function neuesFenster(meineSeite,meinName,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
	Fenster = window.open(meineSeite,meinName,settings);
}


function showMarken()
{
	LeftPosition = (screen.width) ? (screen.width-440)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-440)/2 : 0;
	settings = 'height=440,width=440,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no'
	Fenster = window.open("marken.htm","popUpMarken",settings);
}

function showAnfahrt()
{
	LeftPosition = (screen.width) ? (screen.width-640)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-480)/2 : 0;
	settings = 'height=450,width=640,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no'
	Fenster = window.open("anfahrt.htm","popUpAnfahrt",settings);
}
