// 29-Oct-2008	Nitai Fraenkel Script to turn on/off the submenu and change the link lable
function SCGtoggleOnOffHeader(TheObjId,TheTextObjId)
{
//	debugger;
	if (document.getElementById)
	{
		var TheObj = document.getElementById(TheObjId);
		var TheTextObj = document.getElementById(TheTextObjId);
		var styleLogin = TheObj.style;
		if (styleLogin.display == 'none'){
				styleLogin.display = 'block';
				TheTextObj.innerHTML ='&laquo; Less';
		}
		else {
				styleLogin.display = 'none';
				TheTextObj.innerHTML ='More &raquo;';
		}
		return;
	}
}