//copyright   : (c) macrocom gmbh
           
function openscrollxy(WinWidth,WinHeight,Link,WindowName){
   var xpos=200;
   var ypos=50;
   new_Window = window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,copyhistory=0,left='+xpos+',top='+ypos);
   new_Window.focus();
}


function openfix(WinWidth,WinHeight,Link,WindowName){
	new_Window = window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0,left=0,top=0');
	new_Window.focus();
}
function getLeft(l){
	if (l.offsetParent) return (l.offsetLeft + getLeft(l.offsetParent));
	else return (l.offsetLeft);
}
function getTop(l){
	if (l.offsetParent) return (l.offsetTop + getTop(l.offsetParent));
	else return (l.offsetTop);
}
function Info(){ 
	var breite = 770; 
	var hoehe = 510; 
	var language = 'de' // possible values de,en,es,fr,it 
	var seite = (screen.availWidth - breite) / 2; 
	var oben = (screen.availHeight - hoehe) / 2; 
	var sStatus; sStatus = "resizable=no,scrollbars=yes,location=no,menubar=no,status=no,width=" + breite + ",height=" + hoehe + ",left=" + seite + ",top=" + oben; 
	window.open("http://microsite.dedon.de/popup.php?Plang=" + language ,"DEDON",sStatus); 
} 
function reloadt(){
	window.setTimeout('window.location.reload()',1000);
}