<!--
if ( top.location == self.location ) {
  top.location.href = "http://www.dandali.com/photos/photoframe.html";
  }

var msg = "Hi, Thank you for visiting... \rHaza wassalam!";
if (document.layers)
{
    document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=trapClick;

function trapClick(ev)
{
    // This is the Internet Explorer part
    if (document.all)
    {
        if (event.button == 2)
        {
            alert(msg);
            return false;
        }
    }
    // This is the Netscape part
    if (document.layers)
    {
        if (ev.which == 3)
        {
            alert(msg);
            return false;
        }
    }
}
// -->