


     var tip=new Array
           tip[0]='Any questions for the editorial team?<br/> Send them over to team@picsean.com'
           tip[1]='If you wish to advertise with us and have questions,<br/>Send them over to advertise@picsean.com and we<br/>will be happy to assist.'
           tip[2]='For any queries you may have,<br/>send us a note at team@picsean.com'
	   tip[3]='What is Referral Code?<br/>Picsean Referral Code is a 6 letter code issued to selected members of Picsean.<br/>If your friend has given you a referral code, then use it here.<br/>More details are available in the FAQ section of the website.'
           
     function showtip(current,e,num)
        {
         if (document.layers) // Netscape 4.0+
            {
             theString="<DIV CLASS='ttip'>"+tip[num]+"</DIV>"
             document.tooltip.document.write(theString)
             document.tooltip.document.close()
             document.tooltip.left=e.pageX+14+'px'
             document.tooltip.top=e.pageY+2+'px'
             document.tooltip.visibility="show"
            }
         else
           {
            if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
              {
               elm=document.getElementById("tooltip")
               elml=current
               elm.innerHTML=tip[num]
               elm.style.height=elml.style.height
               elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight)+'px'
               elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+10)+'px'
               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"
     }
  } 
}

