function popupPage(img,title,x,y)
  {
  x=x+30;
  y=y+100;
  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='style2.css' />")
  popup.document.write("<body><div id='popup'><h2>"+title+"</h2>")
  popup.document.write("<a style='border-bottom: 0' href='JavaScript:self.close()'>")
  popup.document.write("<img src='images/"+img+".jpg' border='0'></a>");
  popup.document.write("</div></body></html>");
  popup.document.close();
  }