       
   function getWinSize()
   {
	  
      var myWidth = 0, myHeight = 0;
      if( typeof( window.innerWidth ) == 'number' )
      {
         //Non-IE
         myWidth = window.innerWidth;
         myHeight = window.innerHeight;
      }
      else if(document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight))
      {
          //IE 6+ in 'standards compliant mode'
          myWidth = document.documentElement.clientWidth;
          myHeight = document.documentElement.clientHeight;
      }
      else if(document.body && (document.body.clientWidth || document.body.clientHeight))
      {
          //IE 4 compatible
          myWidth = document.body.clientWidth;
          myHeight = document.body.clientHeight;
      }
      return {w:myWidth,h:myHeight}
      
   }
   /*
  function adjustFlashSize()
   {
	 
      var winSizes = getWinSize();
	  
 
      var flashObj = document.getElementById("fl_movie");

if(flashObj){
      if(winSizes.w < 950){
       //  flashObj.style.width = "950px";
		 flashObj.style.width = "950px";
      }else{
      //  flashObj.style.width = "100%";
		 flashObj.style.width = "100%";
      };
      if(winSizes.h < 580){
         flashObj.style.height = "580px";
		
      }else{
         flashObj.style.height = winSizes.h + "px";
		
      }
}
//	alert(winSizes.h+'  '+divCont.style.height+'  '+flashObj.style.height);
	//alert(winSizes.h+'  '+flashObj.style.height);
	 
   }
   */
   
   function adjustFlashSize()
   {
	 
      
	  
 
      var flashObj = document.getElementById("fl_movie");
	
	  
	  if(flashObj== null || flashObj== undefined){
		  return;
	  }
	  var winSizes = getWinSize();
	
	
if(flashObj!= null && flashObj!= undefined){
	
	
     if(winSizes.w < 950)
      {
         flashObj.style.width = "950px";
      }
      else
      {
         flashObj.style.width = "100%";
      }
      if(winSizes.h < 580)
      {
         flashObj.style.height = "580px";
      }
      else
      {
         flashObj.style.height = winSizes.h + "px";
      }
	 /* alert(flashObj+'  '+flashObj.style.width+'  '+flashObj.style.height+'  '+flashObj.style.visibility);*/
}

	 
   }
   
   

