

function change_to_ffffff(elId){
		document.getElementById(elId).style.color='#FFFFFF';
	document.getElementById(elId).style.fontSize='14px';			
}

function change_to_pink(elId){
	document.getElementById(elId).style.color='#D7008C';
	document.getElementById(elId).style.fontSize='18px';	
	
}




function goToNewPage(pageName){
		  window.open(pageName);
}

function goToPage(pageName){
		
		document.location.href=pageName;
}

function openInNewWindow(pageName) { 
// Change "_blank" to something like "newWindow" to load all links in the same new window 
var newWindow = window.open(this.getAttribute(pageName), '_blank'); 
newWindow.focus(); 
return false; 
} 
