function writeFlash(url,width,height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" id="flash-object" width="'+width+'" height="'+height+'">');
	document.write('  <param name="movie" value="'+url+'">');
	document.write('  <param name="quality" value="high">');
	document.write('  <param name="menu" value="false">');
	document.write('  <embed name="intro" src="'+url+'" quality="high" bgcolor="#FFFFFF" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
	document.write('</object>');
	return true;
}
function writeEmail(email){
	document.write('<a href="mailto:'+email+'" title="'+email+'">'+email+'</a>');
}
function verMapa(image,width,height){
	width+=39;
	height+=30;

	// Center popup
	popupleft=(screen.width-width)/2;
	popuptop=(screen.height-height)/2;

	window.open(image,'_blank','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+popupleft+',top='+popuptop);
	return false;
}