/**
 * Oeffnet die URL eines Test in einer angegebenen Groesse
 **/
function openTests(site) {

	var w = 690;
	var h = 520;
	var x = screen.availWidth/2-w/2;
	var  y = screen.availHeight/2-h/2;
	var popupWindow = window.open(site,'tests','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',scrollbars=no');
}

/**
 * Oeffnet die URL eines Test in einer angegebenen Groesse
 **/
function openFrappr() {

	var site = '';
	var w = 320;
	var h = 320;
	var x = screen.availWidth/2-w/2;
	var  y = screen.availHeight/2-h/2;
	var popupWindow = window.open('http://www.skppsc.ch/blog/index.php/weblog/frappr_popup','tests','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',scrollbars=no');
}

/**
 * Oeffnet die URL eines Test in einer angegebenen Groesse
 **/
function openPopup(site) {

	var w = 690;
	var h = 560;
	var x = screen.availWidth/2-w/2;
	var  y = screen.availHeight/2-h/2;
	var popupWindow = window.open(site,'tests','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',scrollbars=no');
}

/**
 * Oeffnet die URL eines Games in einer angegebenen Groesse
 **/
function openGamePopup(site) {

	var w = 720;
	var h = 450;
	var x = screen.availWidth/2-w/2;
	var  y = screen.availHeight/2-h/2;
	var popupWindow = window.open(site,'tests','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',scrollbars=no,status=no,menubar=no,location=no,toolbar=no');
}
