//###########
//########### DETECCIÓN DEL NAVEGADOR Y POP UP
//###########
IE = navigator.appName=="Microsoft Internet Explorer";
NS = navigator.appName=="Netscape";
bVer = parseInt(navigator.appVersion);
var radval = 0;
var newWin=null;

//###########
//########### COMPATIBILIDAD DEL WEB CON NETSCAPE
//###########
if (IE) 
{
}
else
{
alert("Se recomienda utilizar MS Internet Explorer 6 o porterior para visualizar correctamente éste website.");
window.location = "nav.html";
}

//###########
//########### MENU
//###########
//function right(e) {
//if (navigator.appName == 'Netscape' && 
//(e.which == 3 || e.which == 2))
//return false;
//else if (navigator.appName == 'Microsoft Internet Explorer' && 
//(event.button == 2 || event.button == 3)) {
//alert("Denegado...");
//return false;
//}
//return true;
//}
//document.onmousedown=right;
//if (document.layers) window.captureEvents(Event.MOUSEDOWN);
//window.onmousedown=right;

//   if(window.Event)
//   document.captureEvents(Event.MOUSEUP);function nocontextmenu()
//   {event.cancelBubble=true
//   event.returnValue=false;return false;}function norightclick(e)
//   {if(window.Event)
//   {if(e.which==2||e.which==3)
//   return false;}else
//   if(event.button==2||event.button==3)
//   {event.cancelBubble=true
//   event.returnValue=false;return false;}}document.oncontextmenu=nocontextmenu;document.onmousedown=norightclick;

//###########
//########### BARRA DEL NAVEGADOR
//###########
var message = 'Glosario Instrumental // Acta Odontológica Venezolana';
statuss();
function statuss()
    {
    window.status = message;
    timerID = setTimeout("statuss()", 25);
}

//###########
//########### BOTONES DE NAVEGACION
//###########
    var prev=new Array("out", "over");
    var next=new Array("out", "over");
    
    prev["out"] = "images/prev.jpg";
    prev["over"] = "images/prevover.jpg";
    next["out"] = "images/next.jpg";
    next["over"] = "images/nextover.jpg";

  	function HandleContext()
  	{
		var thisLocation = document.location;
  		if( document.location == top.location ) {
			top.location.replace("Help.htm");
			top.document.cookie = "content=" +thisLocation;
  		}
  	}

//###########
//########### IMPRIMIR
//###########
function imprimir(id){
	popup( 'imprimir.asp?i='+id, 'IMPRESIÓN', 750, 550);
}
function printit(){  
if (NS) {
    window.print() ;  
} else {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    WebBrowser1.ExecWB(6, 2);
WebBrowser1.outerHTML = "";  
}
}  