function postal(path, descr) {
	w = window.open("/servicios/postales/escribir.jhtml?img="+path+"&coment="+descr,"postales","width=630,height=450,scrollbars=yes");
	w.focus();
}

function postal(path, descr, width, height) {
	w = window.open("/servicios/postales/escribir.jhtml?img="+path+"&coment="+descr,"postales","width="+width+",height="+height+",scrollbars=yes");
	w.focus();
}
function postalEncode(path, descr, width, height) {
	w = window.open("/servicios/postales/escribir.jhtml?img="+path+"&coment="+escape(descr),"postales","width="+width+",height="+height+",scrollbars=yes");
	w.focus();
}
