function open_window(url) {
	mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=780,height=580');
}

//These functions are used for highlighting and unhighlighting a TD when the mouse passes over it
function highlight(item) {
	item.style.backgroundColor = "#a0a0a0";
}

function unhighlight(item) {
	item.style.backgroundColor = "#c0c0c0";
}
//End comment

//These functions are used for the rollover images for the main navigation
function newImage( imgSrc ){

 var imgName = new Image();
 imgName.src = imgSrc;

 return imgName;

}

function change( imgName, imgLocation )
{
 document[imgName].src = imgLocation ;
}

var preloadFlag = false;

function loadImages()
{
 if (document.images)
 {
 //****Edit this list to include rollover state images ****
 //****Example: aboutus_over = newImage( "images/aboutus-over.gif" );
 company = newImage("/momsys/images/MainNav/Nav_company_Hover.gif");
 products = newImage("/momsys/images/MainNav/Nav_products_Hover.gif");
 support = newImage("/momsys/images/MainNav/Nav_support_Hover.gif");
 purchase = newImage("/momsys/images/MainNav/Nav_support_Hover.gif");
 news = newImage("/momsys/images/MainNav/Nav_support_Hover.gif");
 contact = newImage("/momsys/images/MainNav/Nav_support_Hover.gif");

 preloadFlag = true;
 }
}
//End Comment