

/* Container zentrieren */
var breite;
if(screen.width < 1024){
	breite = screen.width/2;
}else{
	breite = 400;
} 	
document.write("<style type=\"text/css\" media=\"all\">#container{margin-left:-"+breite+"px;}</style>");


/* CallBack-Formular oeffnen */

function callBack(){
	window.open("../dyncontent/callBack.php", "PopMeUp","toolbar=no,menubar=no,width=400,height=630,resizable=yes,scrollbars=yes");
}
	
	
