// JavaScript Document
	
	function pop_up (url) {
//		window.open ("HTML/quiromassatge_es.html","_self");
		window.open (url,"pop","menubar=no,locationbar=no,width=470px,height=530px,resize=no");
	}
	function tanca_crisis (url) {
		window.opener.location = url;
		window.close();
	}
	function pop_up (url,ancho,alto) {
		params = "menubar=no,locationbar=no,width="+ancho+",height="+alto+",resize=no";
		window.open (url,"_blank",params);
	}
