var MaxMenuNumber=10;

function js_printPage()
{
  if (!window.print)
   { 
     alert("You need NS4.x or IE5 to use this print button!"); 
	 return; 
   } 
   document.getElementById("printLink").style.visibility="hidden";
   window.print();		
   document.getElementById("printLink").style.visibility="";
}


function saman1(prefix,record_id,color,image)
{
document.getElementById(prefix+"Link"+record_id).style.color=color;
document.getElementById(prefix+"Image"+record_id).src="./library/upload/siteImage/"+image;
}



function xoopsGetElementById(id) {
if (document.getElementById(id)) {
	return document.getElementById(id);
	} else if (document.all[id]) {
		return document.all[id];
		} else if (document.layers && document.layers[id]) {
			return (document.layers[id]);
			} else {
				return false;
			}
}

function toggle_visibility(id, flag)  {

if (xoopsGetElementById(id)) {
	xoopsGetElementById(id).style.visibility = (flag) ? 'visible' : 'hidden';
	}
}
