  	var mouseon=false;
  	function showdiv()
  	{
  		id=document.getElementById("contactid");
  		id.className="show"; 
  		mouseon=true;
  		setTimeout("checkmouse()",1000);
  	}
  	
  	function checkmouse()
  	{
  		id=document.getElementById("contactid");
  		if(!mouseon)
  			id.className="hidden"; 
  		else 
  			setTimeout("checkmouse()",1000);  			
  	}
  	function setout()
  	{
  		mouseon=false;
  		setTimeout("checkmouse()",1000);
  	}
  	
var text='<div id="contactid" class="hidden" onmousemove="showdiv()" onmouseout="setout()">';
text+='<table id="Table_01"  width="351" height="197" border="0" cellpadding="0" cellspacing="0">';
text+='	<tr>';
text+='		<td valign="top"><img src="images/contact_01.gif" width="21" height="24" alt=""></td>';
text+='		<td colspan="2" valign="top">';
text+='		<img src="images/contact_02.gif" width="312" height="24" alt=""></td>';
text+='		<td valign="top"><img src="images/contact_03.gif" width="18" height="24" alt=""></td>';
text+='	</tr>';
text+='	<tr>';
text+='		<td valign="top"><img src="images/contact_04.gif" width="21" height="115" alt=""></td>';
text+='		<td colspan="2" bgcolor="#FFFFFF" valign="top" style="font-family: Verdana; font-size: 12pt; color: #221E1F; font-weight: bold">';
text+='		</td>';
text+='		<td valign="top"><img src="images/contact_06.gif" width="18" height="115" alt=""></td>';
text+='	</tr>';
text+='	<tr>';
text+='		<td valign="top"><img src="images/contact_07.gif" width="21" height="58" alt=""></td>';
text+='		<td valign="top"><img src="images/contact_08.gif" width="155" height="58" alt=""></td>';
text+='		<td valign="top"><img src="images/contact_09.gif" width="157" height="58" alt=""></td>';
text+='		<td valign="top"><img src="images/contact_10.gif" width="18" height="58" alt=""></td>';
text+='	</tr>';
text+='</table>';
text+='</div>';
document.write(text);