// BEGIN CAPTION //////////////////////////////////////
var left_offset = '24%';var top_offset = 20;var makecapvisible = false;var title = "";var msg = "";var nao = 0;

function ShowCap(thetitle, themsg) {if(document.layers)	document.captureEvents(Event.MOUSEMOVE);document.onmousemove = MouseMove;title = thetitle;msg = themsg;switch(thetitle){case 'Convenções':case 'Email':	case 'Fale Conosco':case 'Sintimesc':left_offset='5%';nao=1;break;default:nao=0;left_offset='24%';}makecapvisible = true;}
function CapVisible(){var content = '<table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td width="75%" colspan="5" bgcolor="#CC3300"><img src="/images/spacer_clear.gif" width="100%" height="1"></td></tr><tr><td width="1" bgcolor="#CC3300"><img src="/images/spacer_clear.gif" width="1" height="1"></td><td width="1" bgcolor="#FF9966"><img src="/images/spacer_clear.gif" width="10" height="1"></td><td width="85%" bgcolor="#FF9966"><img src="/images/spacer_clear.gif" width="85%" height="1"><font face="verdana, arial" size="1"><div align="right"><br><b>' + title + ':</b><br> ' + msg + '</div></font><img src="/images/spacer_clear.gif" width="85%" height="1"></td><td width="1" bgcolor="#FF9966"><img src="/images/spacer_clear.gif" width="10" height="1"></td><td width="1" bgcolor="#CC3300"><img src="/images/spacer_clear.gif" width="1" height="1"></td></tr><tr><td width="85%" colspan="5" bgcolor="#CC3300"><img src="/images/spacer_clear.gif" width="85%" height="1"></td></tr></table>';
   if(document.getElementById){	var theDiv = document.getElementById("capdiv");	if(theDiv){theDiv.innerHTML = content;theDiv.style.visibility = "visible";}}else if(document.layers && document.capdiv) {document.capdiv.document.write(content); document.capdiv.document.close();document.capdiv.visibility = "visible";}else if(document.all && document.all.capdiv) {document.all.capdiv.innerHTML = content;document.all.capdiv.style.visibility = "visible";  }}
function HideCap() {if(document.layers)	document.releaseEvents(Event.MOUSEMOVE);document.onmousemove = null;
   if(document.getElementById){var theDiv = document.getElementById("capdiv");if(theDiv)theDiv.style.visibility = "hidden";}else if(document.layers && document.capdiv) document.capdiv.visibility = "hidden";else if(document.all && document.all.capdiv) document.all.capdiv.style.visibility = "hidden";  }
function MouseMove(e) {	if(document.all && document.all.capdiv) {if(nao){var x = left_offset;}else{x = event.clientX - 13;}document.all.capdiv.style.left = x;var y = top_offset; y += event.clientY - 13;y += document.body.scrollTop;	document.all.capdiv.style.top = y;}else if(document.getElementById){var theDiv = document.getElementById("capdiv");if(theDiv){var x = left_offset;theDiv.style.left = x;var y = top_offset;y += e.clientY - 8;y += pageYOffset;	theDiv.style.top = y;}}	else if(document.layers && document.capdiv) {var x = left_offset;document.capdiv.left = x;var y = top_offset;y += e.pageY - 11;	document.capdiv.top = y;}if(makecapvisible == true){makecapvisible = false;CapVisible();}}
// END CAPTION //////////////////////////////////////