// Question JavaScript

function Question(question,URL) {
	w = 400;
	h = 150;
	x = (screen.width-w)/2;
	y = (screen.height-h)/2;
	window.open('index.php?site=MBQ&nzp=1&URL='+URL+'&text='+question, 'Frage', 'left='+x+',top='+y+',width='+w+',height='+h+',toolbar=no,status=no,menubar=no,location=no');	
}

