// JavaScript Document

var boletin = 1;

/* Arranque de páginas dinámicas */
function getComboId(nombre_combo){
	var texto=document.getElementById(nombre_combo).value
	return texto;
}

function getComboText(nombre_combo){
	var combo=document.getElementById(nombre_combo);
	var texto=combo.options[combo.selectedIndex].text;
	return texto;
}

function initExpressCategoria(){
		FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressCategoria.php','divExpressCategoria','','POST');		
	}	
	
function initExpressModelo(){
		FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressModelo.php','divExpressModelo','categoria='+getComboId('categoria'),'POST');		
	}	
	
function initExpressAtributos(){
		FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressAtributos.php','divExpressAtributos','cPath='+getComboId('categoria') + '&products_id='+getComboId('producto'),'POST');
}
	
function initExpressImagen(){
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressImagen.php','divExpressImagen','producto='+getComboId('producto'),'POST');
}	

function initExpressAdd(){	
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressAdd.php','divExpressAdd','cPath='+getComboId('categoria') + '&products_id='+getComboId('producto'),'POST');
}	

function expressCambiarAtributos(cPath){
	switch(cPath){
		//Baño de María
		//case 10: FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressAdd.php','divExpressAdd','cPath='+getComboId('categoria') + '&products_id='+getComboId('producto') + '&cantidad='+getComboId('cantidad') + '&color='+ getComboId('Color'),'POST');
		case 10: FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressAdd.php','divExpressAdd','cPath='+getComboId('categoria') + '&products_id='+getComboId('producto') + '&cantidad='+getComboId('cantidad'),'POST');
		break;
		//Default
		default: FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressAdd.php','divExpressAdd','cPath='+getComboId('categoria') + '&products_id='+getComboId('producto') + '&cantidad='+getComboId('cantidad') + '&color='+ getComboId('Color') + '&talla='+ getComboId('Talla'),'POST');
	}	
}	

function expressCambiarImagen(){	
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressCambiarImagen.php','divExpressImagen','&producto='+getComboText('producto')+ '&color='+ getComboText('Color'),'POST');
}	

function fancyboxCambiarImagen(){	
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_fancyboxCambiarImagen.php','divExpressImagen','&producto='+getComboId('producto')+ '&color='+ getComboText('attrib-1'),'POST');
}	

function hideAdd(){	
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/pedido_express/pedido_expressHideAdd.php','divExpressAdd','','POST');
}

function atencion_clientes(page){	
	FAjax('/fundacionrm/includes/templates/fundacionrm/templates/ezpages/manual_operativo/atencion_clientes/'+page+'.php','atencion_clientes','','POST');
}

function novedades_anterior(){
	var elementoOculta = 'boletin' + (boletin + 1);
	var elementoMuestra = 'boletin' + (boletin);
	document.getElementById(elementoOculta).style.display = "none";
	document.getElementById(elementoMuestra).style.display = "block";
	if(boletin>1){
		boletin--;
	}
}

function novedades_siguiente(){
	var elementoOculta = 'boletin' + (boletin);
	var elementoMuestra = 'boletin' + (boletin + 1);
	document.getElementById(elementoOculta).style.display = "none";
	document.getElementById(elementoMuestra).style.display = "block";
	if(boletin<6){
		boletin++;
	}
}

function showMapaSitio(){
	if(document.getElementById('mapa_sitio').style.display == "none")
		document.getElementById('mapa_sitio').style.display = "block";
	else
		document.getElementById('mapa_sitio').style.display = "none";
}

function showCategoriesNav(){
	if(document.getElementById('categories_nav').style.display == "none")
		document.getElementById('categories_nav').style.display = "block";
	else
		document.getElementById('categories_nav').style.display = "none";
}

function showCreateAccount(){
	if(document.getElementById('divCreateAccount').style.display == "none"){
		document.getElementById('divCreateAccount').style.display = "block";
		document.getElementById('h1CreateAccount').style.display = "none";
	}	else {
		document.getElementById('divCreateAccount').style.display = "none";
		document.getElementById('h1CreateAccount').style.display = "block";
	}
}

function conoce_mas(){
	document.getElementById('conoce_mas_link').style.display = "none";
	document.getElementById('conoce_mas').style.display = "block";
}

function conoce_mas_oculta(){
	document.getElementById('conoce_mas_link').style.display = "block";
	document.getElementById('conoce_mas').style.display = "none";
}

function ventanaSecundaria (URL){
	window.open(URL,"NED","width=640,height=480,scrollbars=NO")
}
	
//Inicializar los combos	
window.onload = initExpressCategoria;
