﻿function cargarVisorComunicados(img, com){
	var ventana;
	ventana=window.open('wfVisorImagenes.aspx?img='+img+'&com='+com , 'imagenPersonal','width=600,height=400,scrollbars=0,menubar=0,toolbar=0,location=0,status=0,resizable=0',true);
	ventana.focus();
}

function cargarVisorEventos(img, even){
	var ventana;
	ventana=window.open('wfVisorImagenes.aspx?img='+img+'&even='+even , 'imagenPersonal','width=600,height=500,scrollbars=0,menubar=0,toolbar=0,location=0,status=0,resizable=0',true);
	ventana.focus();
}

function cargarVisorFerias(img, feria){
	var ventana;
	ventana=window.open('wfVisorImagenes.aspx?img='+img+'&feria='+feria , 'imagenPersonal','width=600,height=500,scrollbars=0,menubar=0,toolbar=0,location=0,status=0,resizable=0',true);
	ventana.focus();
}

function cargarContactoOportunidad(codigo){
	var ventana;
	ventana=window.open('wfContactoOportunidad.aspx?codigo=' + codigo,'contacto','width=400,height=383,scrollbars=0,menubar=0,toolbar=0,location=0,status=0,resizable=0',true);
	ventana.focus();
}

function abrirVentana(url, ancho, alto, ventana, scroll){ 
    if (scroll==undefined)
           scroll=1;
    var ventana;
    var posicion;
    var altura;
    altura=window.screen.height-75;
    posicion=window.screen.width - ancho - 15;
	ventana=window.open(url, ventana,'width='+ancho+',height=' + altura + ',scrollbars=1,menubar=0,toolbar=0,location=0,status=0,resizable=0,left=' + posicion + ',top=0',true);
	ventana.focus();
}

function abrirVentanaMSA(url, ancho, alto, ventana, scroll){ 
    if (scroll==undefined)
           scroll=1;
    var ventana;
    var posicion;
    posicion=window.screen.width - ancho - 15;
	ventana=window.open(url, ventana,'width='+ancho+',height=' + alto + ',scrollbars=' + scroll + ',menubar=0,toolbar=0,location=0,status=0,resizable=0,left=' + posicion + ',top=0',true);
	ventana.focus();
}


function abrirVentanaComentarios(url){
	var ventana;
	ventana=window.open(url , 'imagenPersonal','width=500,height=400,scrollbars=1,menubar=0,toolbar=0,location=0,status=0,resizable=0,left=620,top=400',true);
	ventana.focus();
}