

// JavaScript Document
function mouseOn(ObjID){
	var obj = document.getElementById(ObjID);
	obj.style.backgroundImage="url(images/menu-bg-d.jpg)";
	//obj2.style.color="#393737";
		
}//mouseOn

function mouseOut(ObjID){
	var obj = document.getElementById(ObjID);
	obj.style.backgroundImage="url(images/menu-bg-u.jpg)";
	//obj2.style.color="#393737";
		
}//mouseOn

function displayPart(aPath,aSecID,aPID){
	window.open(aPath+'product-details.php?sec='+aSecID+'&pid='+aPID,'','width=800,height=600,resizable=no,scrollable=auto');
}

function selectPage(){
	var selectedOption = document.page.pages.value;
	document.location.replace(selectedOption);
	
}