// ----------------------------------------------
// searches in all links for links with the target "popup" and switches
// them into popup-links
//
// (C) 2007 Neteye GmbH
// Andreas Heidenreich
// ----------------------------------------------

function getPopupLinks() {
	linkNodes = document.getElementsByTagName('a');
	for (i=0; i<linkNodes.length; i++) {
		var linkNode = linkNodes[i];
		var target = linkNode.getAttribute('target');
		if (target != null && target != 'undefined' && target != 'riot') {
			if (target == 'application') {
				var link = linkNode.getAttribute('href');
				var onclick = document.createAttribute('onclick');
				
//				onclick.nodeValue="window.document.open('" + link + "', 'Online-Bewerbung', 'width=600,height=500,top=50,left=150,scrollbars=yes,location=no,toolbar=no,menubar=yes,status=no,resizable=yes'); return false;";
//				linkNode.setAttributeNode(onclick);
				
				linkNode["onclick"] = function() {
					var w = window.open(link, "application", "width=600,height=500,top=50,left=150,scrollbars=yes,location=no,toolbar=no,menubar=yes,status=no,resizable=yes");
					return false;
				}
			}
		}
	}
}

getPopupLinks();
