<!--

function openPopup(url, w, h, windowName, scrollbars, resizable, status) {
    if (scrollbars == null) {
		scrollbars = "no";
	}
	if (resizable == null) {
		resizable = "no";
	}
	if (status == null) {
		status = "no";
	}
	if (windowName == null) {
		windowName = "isijobs";
	}


	if (typeof popwin != "undefined")
    	isipopwin.close();
	attribs
		= "scrollbars=" + scrollbars
		+ ",resizable=" + resizable
		+ ",location=no,menubar=no,"
		+ "status=" + status
		+ ",toolbar=no,width="+w+",height="+h;
	isipopwin = window.open(url, windowName, attribs);
	isipopwin.focus();
	return isipopwin;
}//function
function jobGo(language) {
    if(language) {
			jobpage = '/jobs/index.' + language + '.php';
		}
		else {
			jobpage = '/jobs/index.php';
		}
    window.opener.location.href = jobpage;
    self.close();
}//function

/*
  Die Folgende Methode wird von den Indexdateien unter "/jobs" zur
	Öffnung des "Popup" verwendet
*/
function openBewerbung(jobId, language) {
	bewerbungsWin = openPopup('/public/php/jobs/bewerbung.php?jobId=' + jobId + '&language="' + language + '"', 657,500, 'bewerbung', 'yes', 'yes', 'no');
}

// -->