
	 function setBandwidth (band)
	 { 
		 res = band;
	 	if (band=="l" )
		{ 
			if ((navigator.userAgent.indexOf("IE") > -1) && (navigator.platform == "Win32"))
			{
				MediaPlayer1.height = 215;
				MediaPlayer1.width = 195;
				MediaPlayer1.autoStart = true; 	
				MediaPlayer1.Filename = 'http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od'; 
			} else
			{
				document.MediaPlayer1.SetAutoStart(true);
                document.MediaPlayer1.SetFileName('http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od');
			}
		}else if(band=="h" )
		{
			if ((navigator.userAgent.indexOf("IE") > -1) && (navigator.platform == "Win32"))
			 {			
				MediaPlayer1.height = 215;
				MediaPlayer1.width = 195;
				MediaPlayer1.autoStart = true; 
				MediaPlayer1.Filename = 'http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od'; 
			} else
			{
				document.MediaPlayer1.SetAutoStart(true);
    	    	document.MediaPlayer1.SetFileName('http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od');
			}	
		}
	}
	 function setVideo (videocode)
	 { 
	 	video_now=videocode;
	 	if ((navigator.userAgent.indexOf("IE") > -1) && (navigator.platform == "Win32"))
			{
				MediaPlayer1.autoStart = true; 	
				MediaPlayer1.Filename = 'http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od'; 
			} else
			{
				document.MediaPlayer1.SetAutoStart(true);
                document.MediaPlayer1.SetFileName('http://vbal.stareastnet.com/servlet/com.cycom.servlet.webutil.LoadMedia?path='+videopath+video_now+'.asf.od');
			}		
	}