
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function display(PopupImage) {
 html = "<html>\n<head>\n<title>American Cross</title>\n</head>\n" +
  "<body bgcolor=\"#F7F7F7\" topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">\n<div align=center>\n" +
  "<a href='javascript:self.close();'><img src='" + PopupImage + "' border=0  name=image vspace='0'" +
  "onload='window.resizeTo(document.image.width+28,document.image.height+85)'></a>\n"
  "</div>\n" +
  "</body>\n</html>\n";

 popup=window.open
   ('','_blank','width=300,height=300,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=0');
 popup.document.open();
 popup.document.write(html);
 popup.document.close()
 };

function mouseover(src,clrOver)
 {
 if (!src.contains(event.fromElement))
 {
 src.style.cursor='hand';
 src.bgColor=clrOver;}
 }

function mouseout(src,clrIn)
 {
 if (!src.contains(event.toElement))
 {
 src.style.cursor='default';
 src.bgColor=clrIn;}
 }