﻿// Archivo JScript


function fncAbreVentana(url,nom,h,w,top,left,prt){

		switch (prt)
		{
		case '1' :
		    scrollb = 'yes';
			tool = 'no';
			resize='yes';
			break;
        case '2' :
            scrollb = 'no';
			tool = 'no';
			resize='no';
			break;
	    case '3' :
	        scrollb = 'yes';
			tool = 'no';
			resize='no';
			break;
	    default :
	        scrollb = 'no';
			tool = 'no';
			resize='no';
			break;
		}
		
 window.open(url,nom,"height=" + h + ",width=" + w + ",status=no,resizable=" + resize + ",scrollbars=" + scrollb + ",toolbar=" + tool + ",menubar=no,location=no,top=" + top + ",left=" + left);
       
}

//function Abrir_Emergente(url) {
//  web = url
//  ancho = 770
//  alto = 600
//  izq = (screen.width)/2 - (ancho/2);
//  arr = (screen.height )/2 - (alto/2);
//  //alert(screen.width+','+screen.height);
//  popupWin = window.open(web, "_blank", "scroll='1',width=" + ancho + ",height=" + alto + ",top="+arr+",left="+izq +"")
//}


function abrir_emergente(url ,w,h ) {
  web = url
  ancho = w
  alto = h 
  izq = (screen.width)/2 - (ancho/2);
  arr = (screen.height )/2 - (alto/2);
  //alert(screen.width+','+screen.height);
  popupWin = window.open(web, "_blank", "scroll='auto',scrolling='yes',scrollbars='yes',height="+ alto +",width=" + ancho + ",top="+arr+",left="+izq +"")
}



function MuestraImg(id,ruta)
{
     document.getElementById(id).src=ruta
}
