<!-- hide script from old browsers

function sy_reloadPage(init) {  //reloads the window if Nav4 resized
	  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
		document.sy_pgW=innerWidth; document.sy_pgH=innerHeight; onresize=sy_reloadPage; }}
	  else if (innerWidth!=document.sy_pgW || innerHeight!=document.sy_pgH) location.reload();
	}
	sy_reloadPage(true);
	
	function sy_findObj(n, d) { //v4.01
	  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
		d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=sy_findObj(n,d.layers[i].document);
	  if(!x && d.getElementById) x=d.getElementById(n); return x;
	}
	
	function sy_showHideLayers() { //v6.0
	  var i,p,v,obj,args=sy_showHideLayers.arguments;
	  for (i=0; i<(args.length-2); i+=3) if ((obj=sy_findObj(args[i]))!=null) { v=args[i+2];
		if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
		obj.visibility=v; }
	}
	
	function sy_timelinePlay(tmLnName, myID) { //v1.2
	  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
	  if (document.sy_Time == null) sy_initTimelines(); //if *very* 1st time
	  tmLn = document.sy_Time[tmLnName];
	  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
	  if (myID == tmLn.ID) { //if Im newest
		setTimeout('sy_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
		fNew = ++tmLn.curFrame;
		for (i=0; i<tmLn.length; i++) {
		  sprite = tmLn[i];
		  if (sprite.charAt(0) == 's') {
			if (sprite.obj) {
			  numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
			  if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
				keyFrm=1;
				for (j=0; j<sprite.values.length; j++) {
				  props = sprite.values[j]; 
				  if (numKeyFr != props.length) {
					if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
					else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
				  } else {
					while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
					if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
					  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
					  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
			} } } } }
		  } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
		  if (fNew > tmLn.lastFrame) tmLn.ID = 0;
	  } }
	}
	
	function sy_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
	  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
	  if (document.sy_Time == null) sy_initTimelines(); //if *very* 1st time
	  tmLn = document.sy_Time[tmLnName];
	  if (numGotos != null)
		if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
		else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
	  jmpFwd = (fNew > tmLn.curFrame);
	  for (i = 0; i < tmLn.length; i++) {
		sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
		if (sprite.charAt(0) == "s") {
		  numKeyFr = sprite.keyFrames.length;
		  firstKeyFr = sprite.keyFrames[0];
		  lastKeyFr = sprite.keyFrames[numKeyFr - 1];
		  if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
		  for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
		  for (j=0; j<sprite.values.length; j++) {
			props = sprite.values[j];
			if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
			else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
			if (sprite.obj != null) {
			  if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
			  else        sprite.obj[props.prop2][props.prop] = props[propNum];
		  } }
		} else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
	  }
	  tmLn.curFrame = fNew;
	  if (tmLn.ID == 0) eval('sy_timelinePlay(tmLnName)');
	}

function sy_timelineStop(tmLnName) { //v1.2
  if (document.sy_Time == null) sy_initTimelines(); //if *very* 1st time
  if (tmLnName == null)  //stop all
    for (var i=0; i<document.sy_Time.length; i++) document.sy_Time[i].ID = null;
  else document.sy_Time[tmLnName].ID = null; //stop one
}

function sy_initTimelines() { //v4.0
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
    document.sy_Time = new Array(2);
    document.sy_Time[0] = new Array(1);
    document.sy_Time["mnuHide"] = document.sy_Time[0];
    document.sy_Time[0].sy_Name = "mnuHide";
    document.sy_Time[0].fps = 15;
    document.sy_Time[0][0] = new String("behavior");
    document.sy_Time[0][0].frame = 45;
    document.sy_Time[0][0].value = "sy_showHideLayers('MnuSubCmpny','','hide','MnuSubSrvcs','','hide','MnuSubSupp','','hide')";
    document.sy_Time[0].lastFrame = 45;
    document.sy_Time[1] = new Array(3);
    document.sy_Time["toolBar"] = document.sy_Time[1];
    document.sy_Time[1].sy_Name = "toolBar";
    document.sy_Time[1].fps = 35;
    document.sy_Time[1][0] = new String("behavior");
    document.sy_Time[1][0].frame = 37;
    document.sy_Time[1][0].value = "sy_timelineStop('toolBar')";
    document.sy_Time[1][1] = new String("sprite");
    document.sy_Time[1][1].slot = 1;
    if (ns4)
        document.sy_Time[1][1].obj = document["lyrHdr"] ? document["lyrHdr"].document["lyrToolBar"] : document["lyrToolBar"];
    else if (ns5)
        document.sy_Time[1][1].obj = document.getElementById("lyrToolBar");
    else
        document.sy_Time[1][1].obj = document.all ? document.all["lyrToolBar"] : null;
    document.sy_Time[1][1].keyFrames = new Array(1, 35);
    document.sy_Time[1][1].values = new Array(2);
    if (ns5)
        document.sy_Time[1][1].values[0] = new Array("84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px");
    else
        document.sy_Time[1][1].values[0] = new Array(84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84);
    document.sy_Time[1][1].values[0].prop = "right";
    if (ns5)
        document.sy_Time[1][1].values[1] = new Array("22px", "14px", "6px", "-2px", "-10px", "-18px", "-26px", "-34px", "-42px", "-49px", "-57px", "-65px", "-73px", "-81px", "-89px", "-97px", "-105px", "-113px", "-121px", "-129px", "-137px", "-145px", "-153px", "-161px", "-169px", "-177px", "-184px", "-192px", "-200px", "-200px", "-200px", "-200px", "-200px", "-200px", "-200px");
    else
        document.sy_Time[1][1].values[1] = new Array(22,14,6,-2,-10,-18,-26,-34,-42,-49,-57,-65,-73,-81,-89,-97,-105,-113,-121,-129,-137,-145,-153,-161,-169,-177,-184,-192,-200,-200,-200,-200,-200,-200,-200);
    document.sy_Time[1][1].values[1].prop = "top";
    if (!ns4) {
        document.sy_Time[1][1].values[0].prop2 = "style";
        document.sy_Time[1][1].values[1].prop2 = "style";
    }
    document.sy_Time[1][2] = new String("sprite");
    document.sy_Time[1][2].slot = 1;
    if (ns4)
        document.sy_Time[1][2].obj = document["lyrHdr"] ? document["lyrHdr"].document["lyrToolBar"] : document["lyrToolBar"];
    else if (ns5)
        document.sy_Time[1][2].obj = document.getElementById("lyrToolBar");
    else
        document.sy_Time[1][2].obj = document.all ? document.all["lyrToolBar"] : null;
    document.sy_Time[1][2].keyFrames = new Array(40, 75);
    document.sy_Time[1][2].values = new Array(2);
    if (ns5)
        document.sy_Time[1][2].values[0] = new Array("84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px", "84px");
    else
        document.sy_Time[1][2].values[0] = new Array(84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84);
    document.sy_Time[1][2].values[0].prop = "right";
    if (ns5)
        document.sy_Time[1][2].values[1] = new Array("-200px", "-200px", "-200px", "-200px", "-200px", "-200px", "-200px", "-194px", "-186px", "-179px", "-171px", "-163px", "-155px", "-148px", "-140px", "-132px", "-125px", "-117px", "-109px", "-101px", "-94px", "-86px", "-78px", "-71px", "-63px", "-55px", "-47px", "-40px", "-32px", "-24px", "-17px", "-9px", "-1px", "7px", "14px", "22px");
    else //,-208,-216,-224,-232,-240,-248
        document.sy_Time[1][2].values[1] = new Array(-200,-200,-200,-200,-200,-200,-200,-194,-186,-179,-171,-163,-155,-148,-140,-132,-125,-117,-109,-101,-94,-86,-78,-71,-63,-55,-47,-40,-32,-24,-17,-9,-1,7,14,22);
    document.sy_Time[1][2].values[1].prop = "top";
    if (!ns4) {
        document.sy_Time[1][2].values[0].prop2 = "style";
        document.sy_Time[1][2].values[1].prop2 = "style";
    }
    document.sy_Time[1].lastFrame = 75;
    for (i=0; i<document.sy_Time.length; i++) {
        document.sy_Time[i].ID = null;
        document.sy_Time[i].curFrame = 0;
        document.sy_Time[i].delay = 1000/document.sy_Time[i].fps;
    }
}

function menu_makeHomepage(pageURL){
	oHomePage.setHomePage(pageURL);
	event.returnValue = false;
}

function menu_makeBookmark(url,title){
if(title=='')title=url;
if (document.all)window.external.AddFavorite(url,title);
else alert('Press CTRL and D to add a bookmark to:\n"'+url+'".');
} 

function mailpage()
{
mail_str = "mailto:?subject=Check out Sylex-10";
mail_str += "&body=I thought you might be interested in the following company. ";
mail_str += "You can view it at, " + location.href;
location.href = mail_str;
}

function printpr()
{
var OLECMDID = 7;
/* OLECMDID values:
* 6 - print
* 7 - print preview
* 1 - open window
* 4 - Save As
*/
var PROMPT = 1; // 2 DONTPROMPTUSER
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(OLECMDID, PROMPT);
WebBrowser1.outerHTML = "";
}

// end hiding script from old browsers -->
