//////////////////////////////////////////////////////////////////
// HIER DIE WAHRSCHEINLICHKEIT IN PROZENT EINSTELLEN (0 bis 100):
// PLEASE PUT HERE THE PROBABILITY IN PER CENT (0 to 100):
var prozent_propability = 40;
//////////////////////////////////////////////////////////////////

var SKPlayer = '';

function oeffnenbeisubmit() {
	var breite;
	var hoehe;
	var optionen;
	breite=screen.availWidth;
	hoehe=screen.availHeight;
	optionen="resizable,scrollbars,top=0,left=0,width="+breite+",height="+hoehe;
	window.open("https://www.skopos1.de/uc/projektleiter/04ad/","umfrage",optionen);
	endesurvey();
}
function spaeter() {
	var breite;
	var hoehe;
	var optionen;
	breite=screen.availWidth;
	hoehe=screen.availHeight;
	optionen="resizable,scrollbars,top=0,left=0,width="+breite+",height="+hoehe;
	window.open("https://www.skopos1.de/uc/projektleiter/04ad/","umfrage",optionen);
	endesurvey();
}
function endesurvey() {
  var x = document.getElementById("skopossurvey");
  x.style.visibility = "hidden";
}

function Schreiben(n,w,e) {
	var a = new Date();
	a = new Date(a.getTime() +1000*3600*24*e);
	document.cookie = n+'='+w+'; expires='+a.toGMTString()+';';
}

function Lesen(n) {
	a = document.cookie;
	res = '';
	while(a != '') {
		while(a.substr(0,1) == ' ') {
			a = a.substr(1,a.length);
		}
		cookiename = a.substring(0,a.indexOf('='));
		if(a.indexOf(';') != -1) {
			cookiewert = a.substring(a.indexOf('=')+1,a.indexOf(';'));
		} else {
			cookiewert = a.substr(a.indexOf('=')+1,a.length);
		}
  		if(n == cookiename) {
  			res = cookiewert;
  		}
		i = a.indexOf(';')+1;
		if(i == 0) {
			i = a.length;
		}
		a = a.substring(i,a.length);
	}
	return(res);
}





