<!-- Hide script from old browsers

	var mie = (navigator.appName.indexOf("Microsoft")>= 0)

	function showmenu(mname, sn)
	{
		obj = document.all[mname];
		if (sn > 0)
			obj.style.visibility = "visible";
		else
			obj.style.visibility = "hidden";
	}
	
	function cambiacolor(mname, sn)
	{
		obj = document.all[mname];
		if (sn > 0)
			{
			obj.style.color = "#FF0000";
			obj.style.font.bold = true;
			}
		else
			{
			obj.style.color = "#000000";
			obj.style.font.bold = false;
			}
	}

	function MM_goToURL() 
	{ 
		var i, args = MM_goToURL.arguments;
		document.MM_returnValue = false;
		for (i = 0; i<(args.length-1); i += 2) eval(args[i] + ".location = '" + args[i + 1] + "'");
	}

	function setfocus(pobj) 
	{
		obj = document.all[pobj];
		obj.select();
		obj.focus();
	}

	function openWindow(theURL,winName,winWidth,winHeight,otherFeatures)
	{
		//status=no,scrollbars=no,resize=yes  estos son ejemplos de los otherfeutures
		var x = 0;
		var y = 0;
		x = (screen.availWidth - 12 - winWidth) / 2;
		y = (screen.availHeight - 48 - winHeight) / 2;
		if (otherFeatures != "")
			{
				otherFeatures = "," + otherFeatures
			}
		var features = "screenX=" + x + ",screenY=" + y + ",width=" + winWidth + ",height=" + winHeight+",top="+y+",left="+x+"'" + otherFeatures
		var NewWindow = window.open(theURL,winName,features);
		NewWindow.focus();
	}

	function closewindow() 
	{
		self.opener = this;
		self.close()
	}
	
	function DisplayBanner()
	{ 
		var outRes = "<b><font face	='Verdana' size='2'  color='yellow'>Dataccion, Inc. **** Soluciones Informaticas... de Verdad! ****                                                                                                                                                                                                                        </b></font>";
//		document.all.item("banner").innerHTML = outRes;
	}

	function messagebox(pmensaje)
	{
	  if (confirm(pmensaje)==true)
	    return true;
	  else
	    return false;
	}



// End hiding -->