<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<!-- CUSTOM TOOLTIP -->
<script language="JavaScript" type="text/javascript">
<!-- Copyright 2004, Sandeep Gangadharan -->
<!-- For more free scripts go to [URL unfurl="true"]http://www.sivamdesign.com/scripts/[/URL] -->
<!--
(document.getElementById) ? dom = true : dom = false;
function hideIt(add) {
if (dom) {document.getElementById('layer'+add).style.visibility='hidden';}
if (document.layers) {document.layers["layer"+add].visibility='hide';}
}
function showIt(add) {
if (dom) {
if (document.getElementById('layer'+add).style.visibility=='visible') { hideIt(add); }
else {document.getElementById('layer'+add).style.visibility='visible'} }
if (document.layers) {
if (document.layers["layer"+add].visibility=='show') { hideIt(add); }
else {document.layers["layer"+add].visibility='show'} }
}
// -->
</script>
</head>
<body>
<?php
$layctr=1;
Echo '<div id="layer' . $layctr . '" style="position:absolute; top:20; left:180; visibility:hidden; background-color: #FFFF99; border: 1pt single">';
echo '<table border="0" bgcolor="#FFFF99" cellpadding="2" cellspacing="0">';
echo ' <tr><td align="left"><font face="verdana, arial, helvetica, sans-serif" size="1">';
echo 'You could have the tooltip like this with light grey as the';
echo '<br /> background-color with your choice of font with border.';
echo 'You could have the tooltip like this with light grey as the';
echo '<br /> background-color with your choice of font with border.';
echo 'You could have the tooltip like this with light grey as the';
echo '<br /> background-color with your choice of font with border.';
echo ' </font></td></tr>';
echo '</table>';
echo '</div>';
echo '<font size="2"><a href="[URL unfurl="true"]http://www.yaho.com"[/URL] onMouseOver="showIt(' . $layctr . ')" onMouseOut="hideIt(' . $layctr . ')"><b>Links 1</b></a></font><br /><br /> ';
?>
<p></p>
<p></p>
<p></p>
<a href="[URL unfurl="true"]http://www.yahoo.com">Alex[/URL] here</a>
<p></p>
<p></p>
<p></p>
<?php
$layctr=2;
Echo '<div id="layer' . $layctr . '" style="position:absolute; top:2; left:80; left:80; height:40; visibility:hidden; background-color: #FFFF99; border: 1pt single">';
echo '<table border="0" bgcolor="#FFFF99" cellpadding="2" cellspacing="0">';
echo ' <tr><td align="left"><font face="verdana, arial, helvetica, sans-serif" size="1">';
echo 'This is the 2nd toolTip background-color with your choice of font with border.';
echo ' </font></td></tr>';
echo '</table>';
echo '</div>';
echo '<font size="2"><a href="#" onMouseOver="showIt(' . $layctr . ')" onMouseOut="hideIt(' . $layctr . ')"><b>Links 1</b></a></font><br /><br /> ';
?>
</body>
</html>