// FORMULARIO DE PAGO
var oPago = new Object();

function pago_popup ()
{
    var width = 730;
    var height = 470;
    var winl = (screen.width-width)/2;
    var wint = (screen.height-height)/2;

    oPago = window.open("./nps/FormPagos.asp", "pago_nps", "width=" + width + ",height=" + height + ",top=" + wint + ",left=" + winl + ",scrollbars=no,status=yes" );

    oPago.focus();
}

function pago_close ()
{
    try {
	    oPago.close();
    } catch (e) { }
}

// FORMULARIO RRHH
/*
se tiene que pasar el id de rrhh para poder guardar el archivo correctamente
*/
var oRRHH = new Object();

function rrhh_cv_popup (id)
{
    var width = 500;
    var height = 580;
    var winl = (screen.width-width)/2;
    var wint = (screen.height-height)/2;

    oRRHH = window.open("./rrhh_cv.asp?id=" + id, "rrhh_cv", "width=" + width + ",height=" + height + ",top=" + wint + ",left=" + winl + ",scrollbars=no,status=yes");

    oRRHH.focus();
}

function rrhh_cv_close ()
{
    try {
	    oRRHH.close();
    } catch (e) { }
}