	

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

	
		

<!--

// <!--

//  Check for NS4 or IE4 (this needs to be in document!)

NS = (document.layers) ? 1:0
NS3 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) ==3 ) ? true:false
IE = (document.all) ? 1:0
NOWEBTV = (navigator.userAgent.indexOf("WebTV") == -1)
DHTML = ((NS || IE) && NOWEBTV);
MAC = (navigator.userAgent.indexOf("Mac") != -1)
AOL = (navigator.userAgent.indexOf("AOL") != -1)

// Preload the images 

upbut = new Image();
upbut.src = "img/scrollup.gif";
upbut_on = new Image();
upbut_on.src = "img/scrollup_over.gif";
downbut = new Image();
downbut.src = "img/scrolldown.gif";
downbut_on = new Image();
downbut_on.src = "img/scrolldown_over.gif";

for (i=1;i<2;i++) {
	eval('nav'+i+'= new Image();');
	eval('nav'+i+'.src ="img/clear'+'.gif"');
	eval('nav'+i+'on= new Image();');
	eval('nav'+i+'on.src ="img/clear'+'.gif"'); }

for (i=1;i<2;i++) {
	eval('movie'+i+'= new Image();');
	eval('movie'+i+'.src ="img/clear'+'.gif"');
	eval('movie'+i+'on= new Image();');
	eval('movie'+i+'on.src ="img/clear'+'.gif"'); }
		

// Variables

lock=0;

// Function to change image

// Function for LAYER Mouseover Changeout

  function changeImage(layer,imgName,imgObj) {
          if (NS && layer!=null) eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src');
          else document.images[imgName].src = eval(imgObj+".src");
  }

function initScroll(speed) {  
	contentHeight = (NS) ? document.scrollfield.document.height : document.all.scrollfield.scrollHeight;
	offsetHeight = contentHeight - 405;
	scrollSpeed = speed;
  }
  
function clipBy(obj,t,r,b,l) {
        if (NS) {
                obj.clip.top += t;
                obj.clip.right += r;
                obj.clip.bottom +=  b;
                obj.clip.left += l; }
        else {	
                clip_t += t;
                clip_r += r;
                clip_b += b;
                clip_l += l;
                obj.clip = "rect("+clip_t+"px "+clip_r+"px "+clip_b+"px "+clip_l+"px)" }
}



function scrolldown() {
        if (NS) {
			if (document.scrollfield.top>-offsetHeight) {
                document.scrollfield.top += -12;
                obj=document.scrollfield;
                clipBy(obj,12,0,12,0); }
                }
        else {
			if (document.all.scrollfield.style.pixelTop >-offsetHeight) {
                document.all.scrollfield.style.pixelTop += -12;
                obj=document.all.scrollfield.style;
                clipBy(obj,12,0,12,0); }
                }
        if (downactive) {setTimeout('scrolldown();',50);}
}

function scrollup() {
        if (NS) {
                if (document.scrollfield.top <180) {
                        document.scrollfield.top += 12;
                        obj=document.scrollfield;
                        clipBy(obj,-12,0,-12,0); }
                }
        else {
                if (document.all.scrollfield.style.pixelTop <180) {
                        document.all.scrollfield.style.pixelTop += 12;
                        obj=scrollfield.style;
                        clipBy(obj,-12,0,-12,0); }
                }
        if (upactive) {setTimeout('scrollup();',50);}
}
//-->

	
