/********************************************************************************
 - Función que abre un popup recibiendo todos los parámetros en el llamado -
********************************************************************************/
function openPopup(url,wWidth,wHight,wLeftP,wTopP,wResize,scrl){
	var newWindow = window.open(url,"_blank","width="+wWidth+", height="+wHight+", left="+wLeftP+", top="+wTopP+", scrollbars="+scrl+", resizable="+wResize);
}