var Printout;

function printWindow() {
	try {
		if(Printout.document.images.length && Printout.document.images[0].complete) {
			Printout.print();
			return;
		} else {
			throw "notReady";
		}
	} catch(e) {
		if (e="notReady"){} // nixtun;
	} finally {
	}
	setTimeout("printWindow()", 30);

}

var w = 1000;			/* !!!!!!!!!!!!! Eingeben width for the new window */
var h = 800;			/* !!!!!!!!!!!!! Eingeben heiht for the new window */


function loadURL(HomepageURL) {

	docUrl = "";

	if (HomepageURL != "NV" && HomepageURL.length >3) {
		docUrl = "http://" + HomepageURL;
		modus = "width=" + w + ",height=" + h + ",menubar=yes,locationbar=yes;scrollbars=yes,resizable=yes";
		if(confirm("Laden " + docUrl + " in neuem Fenster?")) Homepage = window.open(docUrl,"Kundenhomepage",modus);
	} else {
		alert("Keine vorhanden!");
	}

}

function toggleMenu(mId,toggle,eventSrc) {

	if(toggle) {

		document.getElementById(mId).className="showMenu";
	}
	else	document.getElementById(mId).className="hideMenu";
}
function HideAds() {
	if(top.document.getElementById) {
		if(top.document.getElementById('advBox'))
			top.document.getElementById('advBox').className = "advBoxHide";
		if(top.document.getElementById('contentText'))
			top.document.getElementById('contentText').className = "contentTextBig";
	}
}
function HideAZ() {
	if(document.getElementById) {
		top.document.getElementById("AZIndex").className = "AZIndexHide";
	}
}
function ShowAZ() {
	if(document.getElementById) {
		top.document.getElementById("AZIndex").className = "AZIndexShow";
	}
}


