// Portal IDE-E
/*
function abrirNuevaVentanaSinHerramientas(url) {
	window.open(url,'_blank','resizable=yes,status=yes');
}
*/

winArray = new Array();
function abrirNuevaVentanaSinHerramientas(url,target, options) {	
	if (winArray[url] == null) {
		if (options) {
			winArray[url] = window.open(url,target,options, true);
		}
		else {
			winArray[url] = window.open(url,target,'resizable=yes,status=yes', true);
		}
	} else {
		if (winArray[url].closed) {
			if (options) {
				winArray[url] = window.open(url,target,options, true);
			}
			else {
				winArray[url] = window.open(url,target,'resizable=yes,status=yes', true);
			}
		} else {
			winArray[url].location = url;
			winArray[url].focus();
		}
	}
}
