﻿
function AbrirPop(URL, vWidth, vHeight) {
var ven=window.open(URL , 'popup', 'height=' + vHeight + ', width=' + vWidth + ', resizable=no, scrollbars=yes, menubar=no, status=no, top=100, left=100');
ven.focus();
}

