function getStream(folder)
	{	var address = "mms://wm.xxxprovider.net/"; 						// absolutni adresa stream serveru
		var mydate=new Date();											// stvori datum ;)
		var daym=mydate.getDate();										// vycucne den v mesici
		if (daym<10) {daym="0"+daym;}									// v pripade potreby prida nulu na zacatek
		stream_link = address + folder + "/" + daym + ".asf";			// stvori string linku
		video.innerHTML = "<OBJECT ID=\"StrData\" WIDTH=\"180\" HEIGHT=\"144\" TYPE=\"application/x-oleobject\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" STANDBY=\"Loading Windows Media Player ...\" VIEWASTEXT ALIGN=\"right\"><PARAM NAME=\"FileName\" VALUE=\""+ stream_link +"\"><PARAM NAME=\"ShowControls\" VALUE=\"0\"><PARAM NAME=\"PlayCount\" VALUE=\"1000\"><PARAM NAME=\"ShowDisplay\" VALUE=\"0\"><PARAM NAME=\"ShowStatusBar\" VALUE=\"0\"><PARAM name=\"uimode\" value=\"none\"><EMBED TYPE=\"video/x-ms-asf-plugin\" NAME=\"StrData\" WIDTH=\"180\" HEIGHT=\"144\" SRC=\""+ stream_link +"\" SHOWCONTROLS=0 SHOWDISPLAY=0 SHOWSTATUSBAR=0 PLAYCOUNT=1000></EMBED></OBJECT>";																// narve obsah do divu VIDEO
	}	

	am = "Sorry, this function is disabled!";
	IE4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
	NS4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ))
	function nrc(e){ 
	if (NS4){if (e.which >= 2){alert(am);return false;}} else if (event.button>=2){alert(am);}}
	document.onmousedown=nrc; 
	if (document.layers) window.captureEvents(Event.MOUSEDOWN); 
	window.onmousedown=nrc;
