var My_AddCart;
var My_AddCart_dbl;
var extrapanel=function()  
{  
    this.divobj;  
     this.show=function(src)  
     {  
       if(!document.getElementById("xdivmasking"))  
       {  
           var divEle=document.createElement('div');  
           divEle.setAttribute("id","xdivmasking");  
           document.body.appendChild(divEle);  
           var divSty=document.getElementById("xdivmasking").style;  
           divSty.position="absolute"; divSty.top="0px"; divSty.left="0px";  
           divSty.zIndex="200"; divSty.opacity=".50";divSty.backgroundColor="#000";  
           divSty.filter="alpha(opacity=50)";  
  
          var divFram=document.createElement('div');  
           divFram.setAttribute("id","xmaskframe");  		   
		   divFram.innerHTML=  document.getElementById(src).innerHTML; 
           document.body.appendChild(divFram);  
           divSty=document.getElementById("xmaskframe").style;  
          // divSty.position="absolute";divSty.top="0px"; divSty.left="0px";   
           divSty.zIndex="210";divSty.border="none";divSty.filter="alpha(opacity=100)";  
		   
        }else{
			document.getElementById("xmaskframe").innerHTML=  document.getElementById(src).innerHTML; 
		}

	   
       	this.divobj=document.getElementById("xdivmasking");  
        this.waitifrm=document.getElementById("xmaskframe");  
          
        var dsh=document.documentElement.scrollHeight;  
        var dch=document.documentElement.clientHeight;  
        var dsw=document.documentElement.scrollWidth;  
        var dcw=document.documentElement.clientWidth;  
          
        var bdh=(dsh>dch)?dsh:dch;  
        var bdw=(dsw>dcw)?dsw:dcw;  
   
        /*this.waitifrm.style.height=*/this.divobj.style.height=bdh+'px';  
        /*this.waitifrm.style.width=*/this.divobj.style.width=bdw+'px';    
        this.waitifrm.style.display=this.divobj.style.display="block";  
     };  
    this.hide=function()  
     {  
         this.waitifrm.style.display=this.divobj.style.display="none"; 
	
     };  
}  



function StartVideo()
{
	var browser = navigator.appName;
	if (browser != "Microsoft Internet Explorer")
	{

	My_StartVideo=new extrapanel();
 	 My_StartVideo.show('StartVideo');
	 
	 setTimeout("My_StartVideo.hide()",8250);
	}
}



