var win = null;

$(document).ready(function(){
	setTimeout("reloadPage()", 60000);
});

function reloadPage(){
	window.location.reload();
}
function popProtocol(id){
	var width = 750;
	var height = 700;
	win = window.open('cuper_matchprotokoll.php?id='+id, 'Matchprotokoll', 'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,width='+ width +', height='+ height);
	win.moveTo((screen.width-width)/2,(screen.height-height)/3);
}

