function openPage(strURL)
{
	window.location = strURL
}

function mouseEffect(objIns,strClassName)
{

	if(objIns != null)	
	{ 
		objIns.className = strClassName
	}

}

function openNewWindow(strLoc)
{
	window.open(strLoc)
}

