<!-- http://darentezaram.blogfa.com -->
 menuItems = new Array();
 menuItemNum = 0;
 function addMenuItem(text, url, img){
  if(img) menuItems[menuItemNum] = new Array(text, url, img);
  else if(text) menuItems[menuItemNum] = new Array(text, url);
  else menuItems[menuItemNum] = new Array();
  menuItemNum++;
 }
 menuWidth = 180;
 menuHeight = 125;
 menuDelay = 1;
 menuSpeed = 1; 
 menuOffset = 1; 
 addMenuItem("<center>&#1583;&#1587;&#1578; &#1606;&#1608;&#1588;&#1578;&#1607; &#1607;&#1575;&#1610; &#1583;&#1604;&#1578;&#1606;&#1711;&#1610;</center>","http://darentezaram.blogfa.com");
 addMenuItem();
 addMenuItem("<center>&#1583;&#1587;&#1578; &#1606;&#1608;&#1588;&#1578;&#1607; &#1607;&#1575;&#1610; &#1582;&#1575;&#1705; &#1582;&#1608;&#1585;&#1583;&#1607;</center>","http://darentezaram.blogfa.com/archive.aspx");
 addMenuItem();
 addMenuItem("<center>&#1607;&#1605;&#1603;&#1604;&#1575;&#1587;&#1610; . &#1603;&#1575;&#1605;</center>","http://hamkela30.com");
 addMenuItem();
 addMenuItem("<center>&#1575;&#1610;&#1605;&#1610;&#1604; &#1576;&#1607; &#1605;&#1583;&#1610;&#1585;</center>","mailto:hamkela30ha.com83@yahoo.com");
  addMenuItem();
 addMenuItem("<center>&#1582;&#1585;&#1608;&#1580; &#1575;&#1586; &#1608;&#1576;&#1604;&#1575;&#1711;</center>","javascript:window.close()");
   if(window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE") + 5, window.navigator.appVersion.indexOf("MSIE") + 8) >= 5.5)
  isIe = 1;
 else
  isIe = 0;
 if(isIe){
  menuContent = '<table id="rightMenu" width="2" height="2" cellspacing="0" cellpadding="0" style="font:menu;color:menutext;"><tr height="1"><td style="background:threedlightshadow" colspan="5"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight" colspan="2"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="10"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:#99CCFF"><table cellspacing="0" cellpadding="0" nowrap style="font:menu;color:menutext;cursor:default;">';
  for(m=0;m<menuItems.length;m++){
   if(menuItems[m][0] && menuItems[m][2])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'#99CCFF\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:#C2C2C2" width="1" nowrap></td><td width="21" nowrap><img src="' + menuItems[m][2] + '"></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:#C2C2C2" width="1" nowrap></td></tr>';
   else if(menuItems[m][0])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'#99CCFF\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:#C2C2C2" width="1" nowrap></td><td width="21" nowrap></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:#C2C2C2" width="1" nowrap></td></tr>';
   else
    menuContent += '<tr><td colspan="5" height="4"></td></tr><tr><td colspan="5"><table cellspacing="0"><tr><td width="2" height="1"></td><td width="0" height="1" style="background:threedshadow"></td><td width="2" height="1"></td></tr><tr><td width="2" height="1"></td><td width="100%" height="1" style="background:threedhighlight"></td><td width="2" height="1"></td></tr></table></td></tr><tr><td colspan="5" height="3"></td></tr>';
  }
  menuContent += '</table></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:#F2F2F2"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedshadow" colspan="3"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threeddarkshadow" colspan="5"></td></tr></table>';
  menuPopup = window.createPopup();
  menuPopup.document.body.innerHTML = menuContent;
 }
 function showMenu(){
  menuXPos = event.clientX + menuOffset;
  menuYPos = event.clientY + menuOffset;
  menuXIncrement = 182 / menuSpeed;
  menuYIncrement = menuHeight / menuSpeed;
  menuTimer = setTimeout("openMenu(0,0)", menuDelay);
  return false;
 }
 function openMenu(height, width){
  iHeight = height;
  iWidth = width;
  menuPopup.show(menuXPos, menuYPos, iWidth, iHeight, document.body);
  if(iHeight < menuHeight)
   menuTimer = setTimeout("openMenu(iHeight + menuYIncrement, iWidth + menuXIncrement)", 1);
  else
   clearTimeout(menuTimer);
 }
 if(isIe) document.oncontextmenu = showMenu;
//-->
