function popupPage(img,title,x,y) 
  {
  x=x+30;
  y=y+80;
  popup=window.open("","MenuPopup","scrollbars=no,menubar=no,resizable=yes,width="+x+",height="+y+",top=40,left=40");
  popup.document.write("<html><title>Detailed View</title><link rel='stylesheet' type='text/css' href='style.css' />")
  popup.document.write("<body><table align='center' border='0' height='30' cellpadding='0' cellspacing='0'><tr>")
  popup.document.write("<td width='44'><img src='images/leftcorner.gif' width='44' height='30'></td>")
  popup.document.write("<td background='images/spacer.gif'><p class='bold'>" + title + "</p></td>")
  popup.document.write("<td width='44'><img src='images/rightcorner.gif' width='44' height='30'></td></tr></table>")
  popup.document.write("<br><table width='100%' border='0'><tr><td align='center'>")
  popup.document.write("<a href='JavaScript:self.close()'>")
  popup.document.write("<img src='images/"+img+".jpg' border='0'></a></td></tr></table>");           
  popup.document.write("</body></html>");
  popup.document.close();
  }
