function open_editor_articulo(page,title,ancho,alto){
	var agreewin=dhtmlmodal.open("agreebox", "iframe", "admin/"+page, title, "width="+ancho+"px,height="+alto+"px,center=1,resize=1,scrolling=0", "recal")
	
	agreewin.onclose=function(){ //Define custom code to run when window is closed
		var theform=this.contentDoc.getElementById("eula") //Access form with id="eula" inside iframe
		var yesbox=theform.eulabox[0] //Access the first radio button within form
		var nobox=theform.eulabox[1] //Access the second radio button within form
		if (yesbox.checked==true)
			alert("You agreed to the terms")
		else if (nobox.checked==true)
			alert("You didn't agree to the terms")
		return true //Allow closing of window in both cases
	}
}

function open_window(page,title,ancho,alto){
	var agreewin=dhtmlmodal.open("agreebox", "iframe", page, title, "width="+ancho+"px,height="+alto+"px,center=1,resize=1,scrolling=0", "recal")
	
	agreewin.onclose=function(){ //Define custom code to run when window is closed
		var theform=this.contentDoc.getElementById("eula") //Access form with id="eula" inside iframe
		var yesbox=theform.eulabox[0] //Access the first radio button within form
		var nobox=theform.eulabox[1] //Access the second radio button within form
		if (yesbox.checked==true)
			alert("You agreed to the terms")
		else if (nobox.checked==true)
			alert("You didn't agree to the terms")
		return true //Allow closing of window in both cases
	}
}

function abrir_link(title) { 
	switch (title)
	{
	   case "wedding":
			open_window('htmls/wedding_planner.html','Cursos Oficiales',570,500);
			break;
	   case "compraonline":
			open_window('shop/index.php','Cursos Oficiales',720,550);
			break;
       case "proveedores":
			open_window('htmls/beneficios_descuentos.html','Cursos Oficiales',570,500);
			break;			
	}
//alert(title);
}
