var oPopup = window.createPopup();
function tooltip(strHTML, oNavigate)
{     

     oPopup.hide();

     oPopup.document.navigateTo = oNavigate;

     oPopup.document.desiredX = event.screenX+12;

     oPopup.document.desiredY = event.screenY+12;    
     if(strHTML==null) {
       strHTML = "Sorry, no tooltip";
     }
          oPopup.document.body.innerHTML = '<table dir=rtl style=\'background:#FFFFDF; border: 1px solid #000000; padding:0px; font-family:Tahoma; font-size:12px; font-weight:none; color:#000000; width:350\' ><tr><td>' + strHTML + '</td></tr></table>';
     oPopup.document.timerID = setTimeout("showtooltip()", 500);
}

function showtooltip()
{
     var popupBody = oPopup.document.body;
     oPopup.show(0,0,0,0);
     var realHeight = popupBody.scrollHeight;
     var realWidth = popupBody.scrollWidth;
     //hide the dimension detector popup.
     oPopup.hide();
     //Show the actual popup with correct width and height.
     oPopup.show(oPopup.document.desiredX, oPopup.document.desiredY,realWidth, realHeight);     
}

function hidetooltip()
{
     oPopup.hide();
     if (oPopup.document.timerID)
     {
          clearTimeout(oPopup.document.timerID);
          oPopup.document.timerID = 0;
     }
}
function addbookmark()
{
bookmarkurl="http://www.myholiday.com.sa"
bookmarktitle="www.myholiday.com.sa - حجز فنادق عالمية - عروض شهر العسل"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

var SESSIONURL = "s=da1ee8d2498730beff57b5e3dbe5a4da&";
var IMGDIR_MISC = "";

function clearField(fId, sMatch, sChange)
{
	if(sChange == null) sChange = '';
	if(fId.value == sMatch)
	{ fId.value = sChange; }
}