// JavaScript Document



function openPage(obj)
{
	
	window.open(obj + ".html", "_self");
}


function setImg(obj)
{
	//alert('comin');
obj.style.cursor=  "Pointer";
//alert('images/" + obj.id + "_over.gif');
    obj.style.backgroundImage = "url('images/" + obj.id + "-active.png')";  
}

function resetImg(obj)
{
	obj.style.backgroundImage = "url('images/" + obj.id + "-back.png')";  
}




function setText1(obj)
{
	
	document.getElementById(obj).className = "hover1";
document.getElementById(obj).style.cursor = "Pointer";
}


function resetText1(obj)
{
	
	document.getElementById(obj).className = "noeffect1";
	
}
