function rollover(imgID)
{
   //alert(' Rollover - img id : '+imgID);		
    document.getElementById(imgID).src="../images/"+imgID+"_ro.gif";	
}
function undoRollover(imgID)
{
  //alert(' Undo Rollover - img id : '+imgID);
  document.getElementById(imgID).src="../images/"+imgID+".gif";	
}

function showElement(elID)
{
	//alert('showElement '+elID);
    new Effect.Appear(elID);
}

function hideElement(elID)
{
  //alert('hideElement '+elID);
  document.getElementById(elID).style.display='none';
}

function fadeElement(elID)
{
  new Effect.Fade(elID);  
}

function blindUpElement(elID, duration)
{
	if(duration==null || duration=='')
	{	
		new Effect.BlindUp(elID);
	}
	else
	{
		
		new Effect.BlindUp(elID, {duration: duration});
	}
}