//Script created by Amir Hossein Jadidi (www.amirweb.com)
//Submitted to Persian Web Tools (http://www.persianwebtools.com)
function showtip(current,e,msg,pic,tooltip,zahradir)
{
if (document.layers) // Netscape 4.0+
{
theString="
"+msg+"
"
document.tooltip.document.write(theString)
document.tooltip.document.close()
document.tooltip.right=e.pageX+14
document.tooltip.top=e.pageY+2
document.tooltip.visibility="show"
}
else
{
if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
{
html=''
html+=''
html+=''
if(pic=='')
{
html+=''
html+=''
html+=''
html+=''
}
else
{
html+=''
html+=''
html+=''
html+=' '
}
html+=' | '
html+=' '
html+=' '
html+=' | '
html+=' '
html+=' '
elm=document.getElementById(tooltip)
elml=current
elm.innerHTML=html
elm.style.height=elml.style.height
elm.style.width=elml.style.width
elm.style.visibility = "visible"
}
}
}
function hidetip(){
if (document.layers) // Netscape 4.0+
{
document.tooltip.visibility="hidden"
}
else
{
if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
{
elm.style.visibility="hidden"
}
}
}
document.write('");
|