/************************************************************************ 
Regino Franco
***********************************************************************/

function popUp(URL)
{
    window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=400');
}

function popUp_Contacto(URL)
{
    window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=850,height=490');
}


//FUNCIONES PARA SUBRAYAR Y QUITAR SUBRAYADO DE LOS HIPERVINCULOS QUE USAN LA FUNCIÓN POPUP
function subrayar(obj){
	obj.style.cursor = 'pointer';
	obj.className = 'sub';
}

function quitarsub(obj){
	obj.style.cursor = 'pointer';
	obj.className = 'nosub';
}