// Map Base de Imagens

// Logo

document.writeln ('<map name="logo">');
document.writeln ('<area shape="rect" coords="5,7,169,112" href="index.html" target="_top">');
document.writeln ('</map>');

// Help

document.writeln ('<map name="help">');
document.writeln ('<area shape="rect" coords="53,39,95,55" href="help.html" target="_top">');
document.writeln ('<area shape="rect" coords="12,39,54,55" href="javascript:radio(' + "'ouro'" + ');"');
document.writeln ('</map>');

// Menu

document.writeln ('<map name="menu">');
document.writeln ('<area shape="rect" coords="21,272,180,296" href="boletim.html" target="_top" />');
document.writeln ('<area shape="rect" coords="21,9,144,31" href="index.html" target="_top">');
document.writeln ('<area shape="rect" coords="29,52,118,68" href="admin.html" target="_top">');
document.writeln ('<area shape="rect" coords="29,70,75,85" href="equipe.html" target="_top">');
document.writeln ('<area shape="rect" coords="29,88,118,104" href="especialidades.html" target="_top">');
document.writeln ('<area shape="rect" coords="29,106,124,122" href="estrutura.html" target="_top">');
document.writeln ('<area shape="rect" coords="21,229,80,254" href="artigos.html" target="_top">');
document.writeln ('<area shape="rect" coords="21,141,131,167" href="cartao.html" target="_top">');
document.writeln ('<area shape="rect" coords="21,184,78,211" href="cursos.html" target="_top">');
document.writeln ('<area shape="rect" coords="21,313,126,339" href="fale.php" target="_top">');
document.writeln ('<area shape="rect" coords="21,356,69,380" href="links.html" target="_top">');
document.writeln ('<area shape="rect" coords="21,399,90,423" href="projetos.html" target="_top">');
document.writeln ('</map>');

// Rodapé

document.writeln ('<map name="rodape">');
document.writeln ('<area shape="rect" coords="585,31,924,48" href="direitos.html" target="_top">');
document.writeln ('<area shape="rect" coords="377,91,547,108" href="mailto:lethiciadob@gmail.com" target="_top">');
document.writeln ('</map>');

// Equipe

document.writeln ('<map name="equipe">');
document.writeln ('<area shape="rect" coords="615,2,746,32" href="equipe_psicologia.html" target="_top">');
document.writeln ('<area shape="rect" coords="483,2,615,32" href="equipe_odontologia.html" target="_top">');
document.writeln ('<area shape="rect" coords="376,2,483,32" href="equipe_nutricao.html" target="_top">');
document.writeln ('<area shape="rect" coords="272,2,376,32" href="equipe_medicos.html" target="_top">');
document.writeln ('<area shape="rect" coords="127,2,272,32" href="equipe_fonoaudiologia.html" target="_top">');
document.writeln ('<area shape="rect" coords="3,2,127,32" href="equipe_fisioterapia.html" target="_top">');
document.writeln ('</map>');

// Funções para abrir as Fotos

function foto(cod) {
	url = "http://www.clinicacontato.com.br/imgs/fotos/"+cod+".jpg";
	Foto = window.open(url,'Foto','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width=320,height=480,top=50,left=100');void(0);
	Foto.creator = self;
	Foto.focus();
}

// Funções para abrir as Imagens

function imagem(num) {
	url = "http://www.clinicacontato.com.br/imgs/fotos/"+num+".jpg";
	Imagem = window.open(url,'Imagem','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width=525,height=480,top=50,left=100');void(0);
	Imagem.creator = self;
	Imagem.focus();
}

// Funções para abrir a Rádio

function radio(play) {
	url = "http://www.clinicacontato.com.br/"+play+".html";
	Radio = window.open(url,'Radio','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width=250,height=100,top=50,left=100');void(0);
	Radio.creator = self;
	Radio.focus();
}