function togglePreview(moreLinkId, lessLinkId, panelId) {

	try {
	
		var more	= document.getElementById(moreLinkId);
		var less	= document.getElementById(lessLinkId);
		var panel	= document.getElementById(panelId);
				
		(more.style.display == "none") ? more.style.display = "inline" : more.style.display = "none";
		(less.style.display == "none") ? less.style.display = "inline" : less.style.display = "none";
		(panel.className == "xspDisplayInline") ? panel.className = "xspDisplayNone" : panel.className = "xspDisplayInline";
		
	} catch (e) {
		alert(e.message);
	}
	
	return(false);
}
function mOver(o){
o.style.background="#FFFFC8";
}
function mOut(o){
o.style.background="#FFFFFF";
}
