/*molmos (2009-08-12): función para generar la redirigir la página a la versión con template*/

function gotoTemplatePage(customname)
{
	var fullpath="http://"+location.hostname+"/pagina_internet/index.htm?html=";
	var carpetas=new Array();
	var i=0;
	
	carpetas=location.href.split("/");
	
	for(i=0;i<carpetas.length;i++)
	{
		if((carpetas[i]!=location.protocol) && (carpetas[i]!=location.hostname) && (carpetas[i]!="") && (carpetas[i]!="pagina_internet"))
		{
			if((customname!=null)&& (i==carpetas.length-1))
			{
				carpetas[i]=customname;
			}
			fullpath+=carpetas[i]+"/";
		}
	}
	window.open(fullpath.substring(0,fullpath.length-1),"_self");
}