fensterauf = 0;

function popup(theURL,winName,features) {
	fensterauf=1;
	popwindow = window.open(theURL,winName,features);
	popwindow.focus();
}

function popdown() {
	if(fensterauf==1){
		popwindow.close();
		fensterauf=0;
	}
}



function job_info(title,fil_name,street,town,tel,fax,email)
{ var undefined;
  pop = window.open('', 'job_info', 'width=418,height=314,scrollbars=0');
  with (pop)
  {
    	focus ();
    	document.open();
	document.write('<title>'+title+'</title>');
	document.write('<link href="./includes/avance_style.css" rel="stylesheet" type="text/css">');
	document.write('<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onClick=\"self.close()\">');
	document.write('<table width=\"418px\" height=\"314px\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" background=\"image_layout/popup_jobs.jpg\"><tr>');
	document.write('<td valign=\"bottom\" class=\"textjobpop\">');
	document.write('Sie interessieren sich f&uuml;r dieses Stellenangebot?<br>');
	document.write('Haben Sie Fragen? Hier erreichen Sie uns.<br><br><br>');
	document.write('AVANCE Personal-Service GmbH<br>');
	document.write(fil_name+'<br>');
	document.write(street+'<br>');
	document.write(town+'<br><br><br>');
	document.write('Telefon: '+tel+'<br>');
	document.write('Fax: '+fax+'<br>');
	document.write('E-Mail: '+email+'<br><br><br>');
	document.write('Nutzen Sie Ihre Chance!');
	document.write('</td></tr></table>');
	document.write('</body>');
	document.close();
  }
}