
function openWindow(theURL,winName,features) {
newWindow=window.open('',winName,features)
newWindow.document.write("<html><head><\/head><body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">")
newWindow.document.write("<img src=\"")
newWindow.document.write(theURL)
newWindow.document.write("\">")
newWindow.document.write("<\/body><\/html>")
newWindow.document.close()
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
