// JavaScript Document

if (document.images) {            // Active Images
	
	MenuItem = new Image();
		MenuItem.src = "images/arrow_green.gif"

	MenuItemDown = new Image();
		MenuItemDown.src = "images/arrow_red.gif"


} 
// Function to press button

function imgOn(imgName,imgID) {
	if (document.images) {
		document[imgID].src = eval(imgName + "Down.src");        
	}
}


// Function to release button

function imgOff(imgName,imgID) {
        if (document.images) {
            document[imgID].src = eval(imgName + ".src");        
        }
}

// Open window function

var do_focus = 0;

function open_window(url) 

{

mywin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=570,height=390');

}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}