//-----------------------------------------
// Mouseover effect for the top nav buttons
//-----------------------------------------
function topNavOver(id){
	var source = "../dgs_images/but_" + id + "_mo.gif";
	document.getElementById(id).src=source;
}

function topNavOut(id){
	var source = "../dgs_images/but_" + id + ".gif";
	document.getElementById(id).src=source;
}

//-----------------------------------------
// Mouseover effect for the nav sign (left)
//-----------------------------------------
function navOver(id){
	document.getElementById(id).style.backgroundImage = 'url(../dgs_images/navsignbg_over.jpg)';
}

function navOut(id){
	document.getElementById(id).style.backgroundImage = 'url(../dgs_images/navsignbg.jpg)';
}

//------------------------
// Other random scriptlets
//------------------------

//Popup window maker
function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
}

//-------------------------------------
// Preload the images for the rollovers
//-------------------------------------
pic1= new Image(); 
pic1.src="../dgs_images/navsignbg_over.jpg"; 

pic2= new Image(); 
pic2.src="../dgs_images/but_company_mo.gif"; 

pic4= new Image(); 
pic4.src="../dgs_images/but_main_mo.gif"; 

pic5= new Image(); 
pic5.src="../dgs_images/but_products_mo.gif"; 
