<!--
var    chasm	=   screen.availWidth;
var    mount    =   screen.availHeight;
var    IpAddress =   0;
var    LivexExist =false;
var    sizeFlag1 = 1;
var    sizeFlag2 = 1;
var    sTitle = "";
function Play()
{  
  CreateX();
  if( LivexExist ){
  try{   
        document.WebCamX1.PlayX();        
   }catch(e){
	alert("Please refresh Browser. e_PLAY");
   }   
 }
}
function CreateX()
{   
  try{
  	document.WebCamX1.CreateX();
  	if(IpAddress == 0) 
  	{
  	  document.WebCamX1.IpAddress= document.location;  	
  	}
  	else
  	{
  	  document.WebCamX1.IpAddress= IpAddress;
  	}
 	 
 	 document.WebCamX1.CommandPort = CommandPort;
    	 document.WebCamX1.DataPort = DataPort;
    	 document.WebCamX1.AudioDataPort = AudioPort;
    	 LivexExist = true;
    	 
   }catch(e){
	alert("Active X plugin required, see notes");
	LivexExist = false;
   }

}


function ShowCamMenu()
{    
 if( LivexExist ){   
  try{    
       document.WebCamX1.ShowCamMenuX();    
   }catch(e){
	alert("ActiveX downloading please refresh");
  }
 }  
}


//-->
