function linkPopup (url,windowName) {
	fenster = window.open(url, windowName, "width=600,height=600,status=no,scrollbars=yes,resizable=no,menubar=0,location=0,toolbar=0");
	fenster.focus();
}
// ------------------------------------------------------------- //
// Page Reload bei 15 sec. für id = 15                           //
// ------------------------------------------------------------- //
var counter = 8;
function reloadPage(pageID) {
	if (counter == 0) {
		location.href="index.php?id="+pageID;
	} else {
		counter = counter - 1; setTimeout("reloadPage(" + pageID +")",1000);
	}
}
