var searchUrl = new String(parent.location);
var strhttp = '';
if (searchUrl.indexOf('https:') >= 0) {
	strhttp = 'https:';
} else {
	strhttp = 'http:';
}

if (browserName.indexOf("IE") > 0 && browserName.indexOf("Mac") < 0) 
{
    function MMove(e) 
    {
       var theLayer;
       if (activeMenu != null) 
       {
          theLayer = getElement(activeMenu,null);
          if(theLayer)
          {   
             if ((window.event.x < theLayer.offsetLeft ) || (window.event.x > (theLayer.offsetLeft + theLayer.offsetWidth))  || ( window.event.y < (theLayer.offsetTop - 20)) || ( window.event.y > (theLayer.offsetTop + theLayer.offsetHeight))) 
             {
                ShowMenu('nn');
             } 
          }
       }
    }
	
    document.onmousemove = MMove;

    document.writeln('<div id="lyr_our_services" onMouseOut="ShowMenu(\'nn\')"  style="position:absolute; top:93; left:302; width:250; height:136; z-index:2; visibility:hidden ">');
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="obj_our_services" codebase="' + strhttp + '//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" onMouseOut="ShowMenu(\'nn\')" width="250" height="136" style="z-index:2">');
    document.writeln('<param name=movie value="flash/menu.swf">'); 
    document.writeln('<param name=BASE value="' + ServerName() + '/">');
    document.writeln('<param name=menu value=false>');
    //document.writeln('<param name=Wmode value=transparent>');
    document.writeln('<param name=quality value=high>');
    document.writeln('<embed src="flash/menu.swf" BASE="' + ServerName() + '/" name="lyr_our_services" quality=high pluginspage="' + strhttp + '//www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" style="z-index:2" width="250" height="136" >');
    document.writeln('</embed>');
	document.writeln('</object>');
    document.writeln('</div>');  
}