function selectVideo(path,width,hight){
							var s1 = new 	SWFObject("template/images/player.swf","mediaplayer",width,hight,"7");
      								s1.addParam("allowfullscreen","true");
											s1.addVariable("file",'/'+path); 
											s1.addVariable("width",width);
											s1.addVariable("height",hight);
											s1.addVariable("autostart","true"); 
											s1.addParam("wmode", "transparent");	
			   							s1.write("mainVedio");						
					}		
					
					
				
function selectVideoNewPlayer(path,width,hight,idFlashvars){


		flvhigh = parseInt(hight)+17;

		var s1 = new SWFObject("http://www.arx.com/newplayer/flvplayern.swf","mediaplayer",'100%',flvhigh,"7");
    		s1.addParam("allowfullscreen","true");
				s1.addParam("file","http:/www.arx.com/newplayer/flvplayern.swf"); 
				s1.addParam("width",'100%');
				s1.addParam("height",'100%');
				s1.addParam("autostart","true"); 
				s1.addParam("wmode", "transparent");
				s1.addParam("scale", "noscale");				
				s1.addParam("flashvars",document.getElementById(idFlashvars).innerHTML); 					
				s1.addParam("salign", "tl");					
			  s1.write("mainVedio");																	
	}															
					function chdisplay(path,width,height,name,idFlashvars){
			 		var obj=document.getElementById('popUpZone').style.display;				
					offsetWidth=document.getElementById('MainTable').offsetWidth;
					offsetHeight=document.getElementById('MainTable').offsetHeight + 10;
					if (obj=='block') {
								document.getElementById('mainVedio').innerHTML='';
								document.getElementById('popUpZone').style.display='none';
								document.getElementById('mainVedioFrame').style.display='none';		
						} 
					if (obj=='none') {							
							selectVideoNewPlayer(path,width,height,idFlashvars);	
							
							document.getElementById('mainVedio').style.height=height;
							document.getElementById('mainVedio').style.width=width;							
													
							document.getElementById('mainVedioName').innerHTML=name;		
							document.getElementById('popUpZone').style.display='block';						
							document.getElementById('popUpZone').style.width=offsetWidth + 'px';
							document.getElementById('popUpZone').style.height=offsetHeight + 'px';							
							document.getElementById('mainVedioFrame').style.display='block';														
							document.getElementById('mainVedioFrame').style.left= offsetWidth/2 -width/2 + 'px';
							document.getElementById('mainVedioFrame').style.top= document.body.scrollTop + 'px';		
							document.getElementById('mainVedioFrame').style.top= document.body.scrollTop+ document.body.clientHeight/2 - height/2 - 80 + 'px';												
						} 																
					}