function PopUp(page, name, width, height, scrollbars)
{
 	extW = window.open(page, name, "scrollbars=" + scrollbars + ", toolbar=no, directories=no, menubar=no, resizable=yes, status=no, width=" + width + ", height=" + height);
}

function spielBericht(spiel) 
{
	PopUp("http://www.ishd.de/saison/spielbericht/spielbericht.php3?spiel=" + spiel, spiel, 500, 450, "no");
}

function RequestConfirmation(text) 
{
	return confirm(text);
}