	var newwindow;
	function newPane(url) {
		newwindow=window.open(url,'vacancies','height=500,width=400,resizable=yes,scrollbars=no,toolbar=no,status=no');
		if (window.focus) {
			newwindow.focus();
		}
	}
	function externalLinks() { 
		if (!document.getElementsByTagName) return; 
		var anchors = document.getElementsByTagName("a"); 
		for (var i=0; i<anchors.length; i++) {
			var anchor_var = anchors[i]; 
			var href_var = anchor_var.getAttribute("href");
			if(href_var.substring(35,54) == "vacancies_info.html") {
			 	anchor_var.setAttribute("href","javascript:newPane('" + href_var + "');");
			}
		} 
	} 
