/* -----------------------------------------------
Dresdner Factoring
Realisierung der Dropdown-Menus
23.03.2005
----------------------------------------------- */

initNav = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i = 0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover=function() {
					this.className += " over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload = initNav;

/* -----------------------------------------------
Anzeige Factoringanfrage
01.01.2005
----------------------------------------------- */

function showInquiry(url) {
	window.open(url, 'DFAG', 'width=680,height=665');
	return false;
}

/* -------------------------------------------------
Aufruf Kunden-Login bei Stratos
*/

function customerLogin(url) {
                window.open('http://www.online-factoring.com/dresdner-factoring', 'DFAG', 'width=1024,height=768,resizable=yes');
	return false;
}