// Copyright 2008, scalp.de// this code may be reproduced as long as the above copyright notice is maintained.	function winopen(url,name,style) {		var newWin = window.open(url,name,style);		newWin.focus();	}	function showVideo(id, width, height, hastext) {		//alert("id = " + id + "\nwidth = " + width + "\nheight = " + height + "\nhastext = " + hastext);		var win_url = "flash/videoplayer.php?id=" + id;		var win_name = "video" + id;		if (Boolean(hastext)) {			var hoehe = Number(height) + 200; // + 100 for the text		} else {			var hoehe = Number(height) + 100;		}		var win_props = "width=" + (Number(width) + 100) +","+"height=" + hoehe +",status=no,location=no,scrollbars=no,resizable=yes";		//alert("win_url = " + win_url + "\nwin_name = " + win_name + "\nwin_props = " + win_props + "\nhastext = " + hastext);		winopen(win_url,win_name,win_props);	}	function scrollTop(){		scroll(0,0);	}	function submitnewsabo(){		document.newsabo.submit();	}// --- peace out ---