
function popup_2_noel(page)
{
    win = window.open(page,'onceuponatime','width=850,height=550,left=0,top=0,screenY=0,screenX=0,toolbar=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,align=center')
}	
	function popupWindow(url)
	{
	  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
	}
	
	function UndisplayOptionsTxt(tab)
	{
		for(i=0;i<sizeof(tab);i++) document.getElementById(tab(i)).style.display = 'none';
	}
	
	var last_id = 0;
	
	function DisplayOptionsTxt(Id)
	{
		if(last_id != 0) document.getElementById(last_id).style.display = 'none';
		if(Id == "null") return;
		
		document.getElementById(Id).style.display = 'block';
		last_id = Id;
	}
	
	function rowOverEffect(object)
	{
	  if (object.className == 'moduleRow') object.className = 'moduleRowOver';
	}
	
	function rowOutEffect(object)
	{
	  if (object.className == 'moduleRowOver') object.className = 'moduleRow';
	}
	
	function checkBox(object)
	{
	  document.account_newsletter.elements[object].checked = !document.account_newsletter.elements[object].checked;
	}