<!-- // hide

function AcceptCookieDetect(){

   var tmpcookie = new Date();
   var Warnung1 = "<strong>Warnung:</strong> Ihr Browser akzeptiert keine 'Cookies'.";
   var Warnung2 = "<br><br>Ohne Aktivierung der Cookie-Funktionalitaet ist ein Login / die Neuanmeldung nicht moeglich.";
   var Warnung3 = "<br><br>Bitten klicken Sie <a href='mailto:tech@oscomputing.de'>hier</a> um mehr zu erfahren.";

   var OK = "";
   
   chkcookie = (tmpcookie.getTime() + '');
   document.cookie = "chkcookie=" + chkcookie + "; path=/";
    if (document.cookie.indexOf(chkcookie,0) < 0) {
      
	document.write("<br><link href='http://www.myjobportal.de/iqb/assets/css/generic/Warning.css' rel='stylesheet' type='text/css'>"); 
	document.write("<table width='200' border='0' cellspacing='0' cellpadding='0'>");
	document.write("<tr>");
	document.write("<td valign='top' class='WarningBG'><table width='100%' border='0' cellspacing='0' cellpadding='0'>");
	document.write("<tr>"); 
	document.write("<td width='8' height='18' align='left' valign='top'><img src='http://www.myjobportal.de/iqb/assets/images/Kanten/linksoben.gif' width='6' height='6'></td>");
	document.write("<td align='left' valign='middle' class='WarningBG'>Hinweis</td>");
	document.write("<td width='6' align='right' valign='top'><img src='http://www.myjobportal.de/iqb/assets/images/Kanten/rechtsoben.gif' width='6' height='6'></td>");
	document.write("</tr>");
	document.write("</table></td>");
	document.write("</tr>");
	document.write("<tr>"); 
	document.write("<td class='WarningBG'>");
	document.write("<table width='100%' border='0' cellspacing='1' cellpadding='5'>");
	document.write("<tr>"); 
	document.write("<td height='40' class='WarningColor1'><table width='100%' border='0' cellspacing='1' cellpadding='5'>");
	document.write("<tr>"); 
	document.write("<td width='15'><img src='http://www.myjobportal.de/iqb/assets/images/symbols/Warning.gif' width='14' height='15'></td>");
	document.write("<td class='WarningColor1'> Cookies aktivieren !</td>");
	document.write("</tr>");
	document.write("</table></td>");
	document.write("</tr>");
	document.write("<tr>"); 
	document.write("<td height='100' align='left' valign='top' class='WarningColor2'>");
	document.write(Warnung1);
	document.write(Warnung2);
	document.write(Warnung3);
	document.write("</td>");
	document.write("</tr>");
	document.write("</table></td>");
	document.write("</tr>");
	document.write("</table><br>");

 
 
  }
    else {
     document.write(OK);
    }
	}
	
	
	
	
	
function AcceptCookieDetectHideLink(){

   var tmpcookie = new Date();

   var OK = "<a href='../LoginRedirect?action=NeuerStudent' target='_self'>Neuanmeldung</a>";
   
   chkcookie = (tmpcookie.getTime() + '');
   document.cookie = "chkcookie=" + chkcookie + "; path=/";
    if (document.cookie.indexOf(chkcookie,0) < 0) {
      
	document.write("<a href='#' target='_self'>Neuanmeldung</a>"); 
 
  }
    else {
     document.write(OK);
    }
	}
	
	
	
function AcceptCookieDetectHideSubmit(){

   var tmpcookie = new Date();

   var OK = "<input type='submit' name='Submit' value='Login' /> ";
   
   chkcookie = (tmpcookie.getTime() + '');
   document.cookie = "chkcookie=" + chkcookie + "; path=/";
    if (document.cookie.indexOf(chkcookie,0) < 0) {
      
	document.write(""); 
 
  }
    else {
     document.write(OK);
    }
	}
		
	
	
	
	
	
	
	
	
 //-->