// Beitrag drucken
function beitrag_drucken(uuidstring,root_path) {
  window.open(root_path+'/go/'+uuidstring+'&cmd=print','beitrag_drucken','width=650,height=450,locationbar=yes,menubar=no,toolbar=yes,status=no,resizable=yes,scrollbars=1');
}

// iRacer-PopUp
function OnOpenCustomPopupWindow(void1, t, x, y, w, h, u, void2, bP, bT, bC, bS){
	var wndCustomPopupWindow = window.open('', 'wndCustomPopupWindow', 'left='+x+',top='+y+',pos-x='+x+',pos-y='+y+',width='+w+',height='+h+',resizable=yes,scrollbars=yes,status=1,menubar=1');
	wndCustomPopupWindow.document.write('<html><title>'+t+'</title><body>Please wait...</body></html>');
	//wndCustomPopupWindow.location.href=u+'&bPrint='+bP+'&bTop='+bT+'&bClose='+bC+'&bScroll='+bS+'&width='+w+'&height='+h+'&title='+escape(t);
  wndCustomPopupWindow.location.href=u;
	wndCustomPopupWindow.focus();
}

