//Su explorador no soporta java o lo tiene deshabilitado; esta pagina necesita javascript para funcionar correctamente<!-- 
             
function abrir(direccion, pantallacompleta, herramientas, direcciones, estado, barramenu, barrascroll, cambiatamano, ancho, alto, izquierda, arriba, sustituir){ 
    var opciones = "fullscreen=" + pantallacompleta + 
                 ",toolbar=" + herramientas + 
                 ",location=" + direcciones + 
                 ",status=" + estado + 
                 ",menubar=" + barramenu + 
                 ",scrollbars=" + barrascroll + 
                 ",resizable=" + cambiatamano + 
                 ",width=" + ancho + 
                 ",height=" + alto + 
                 ",left=" + izquierda + 
                 ",top=" + arriba; 
    var ventana = window.open(direccion,"venta",opciones,sustituir); 

}       
function printpage() {
  window.print();
  }



function openWindow(url,w,h,tb,stb,l,mb,sb,rs,x,y){
var pos=(document.layers)? ',screenX='+x+',screenY='+y: ',left='+x+',top='+y;
tb=(tb)?'yes':'no';
stb=(stb)?'yes':'no';
l=(l)?'yes':'no';
mb=(mb)?'yes':'no';
sb=(sb)?'yes':'no';
rs=(rs)?'yes':'no';
var txt='';
txt+='scrollbars='+sb;
txt+=',width='+w;
txt+=',height='+h;
txt+=',toolbar='+tb;
txt+=',status='+stb;
txt+=',menubar='+mb;
txt+=',links='+l;
txt+=',resizable='+rs;
var x=window.open(url, 'newWin'+new Date().getTime(), txt+pos);
x.focus();
}
/*
Usage: openWindow( url , w , h , tb , stb , L , mb , sb , rs , x , y ) 


url - The URL of the page to open. Example: "http://scriptasylum.com". 
w - The width of the window in pixels. 
h - The height of the window in pixels (doesn't include menubars). 
tb - Toolbar visible? 1 = yes, 0 = no. 
stb - Status bar visible? 1 = yes, 0 = no. 
L - Linkbar visible? 1 = yes, 0 = no. 
mb - Menubar visible? 1 = yes, 0 = no. 
sb - Scrollbars visible? 1 = yes, 0 = no. 
rs - Resizable window? 1 = yes, 0 = no. 
x - The horizontal position of the window from the left of the screen. 
y - The vertical position of the window from the top of the screen. 

*/

//-->    

