/* Output Common css and Font css */
document.open();
document.write('<link rel="stylesheet" type="text/css" href="/community/common/css/common.css">'); 
document.close();

function goobike(){
	document.open();
	document.write('<a href="/"><img src="http://goobike.com/common/img/logo_goobike.gif" border="0" vspace="4"></a>'); 
	document.close();
}

/* Window Pop Up */
function OpenPopupCenter(Link,WinTarget,breite,hoehe) { 
 if (!!window && Link) { 
 var iMyWidth = (window.screen.width/2) - (breite/2 + 10); 
 var iMyHeight = (window.screen.height/2) - (hoehe/2 + 50); 
 var winPopup = window.open(Link ,WinTarget,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,favorites=no,width=" + breite + ",height=" + hoehe + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight); 
 winPopup.focus(); 
 }
}

/* Window Pop Up w/scrollbar */
function OpenPopupCenter2(Link,WinTarget,breite,hoehe) { 
 if (!!window && Link) { 
 var iMyWidth = (window.screen.width/2) - (breite/2 + 10); 
 var iMyHeight = (window.screen.height/2) - (hoehe/2 + 50); 
 var winPopup = window.open(Link ,WinTarget,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,favorites=no,width=" + breite + ",height=" + hoehe + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight); 
 winPopup.focus(); 
 }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}

