
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,'scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,titlebar=yes,location=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,'scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,titlebar=yes,location=yes,status=yes', true);
			}
		} else {
			winArray[url].location = url;
			winArray[url].focus();
		}
	}
}

//-------------------------------------------------------------------------------------------------------------------------------
// Para desplegar el menu
function toggleMenuDisplay(menu) 
{
	imgName = menu.id+'Img';
	if(menu.style.display == 'none'){
		menu.style.display='block';
	}else{
		menu.style.display='none';
	}
}

	
function paramSend(page, messages, lang, parentId, pathId)
{
	var form = document.getElementById('parameterSender');
	form.page.value=page;
	form.lang.value=lang;
	//alert("lang:" + lang);
	//alert("parent:" + parentId);
	//alert("mensaje parent:" + messages[lang][parentId]);
	form.parentId.value = parentId;
	form.parent.value =  messages[lang][parentId];
	form.pathId.value = pathId;
	form.path.value=messages[lang][pathId];
	//alert("pathId: " + pathId); 
	//alert("path: " + path); 
	form.submit();
}

