// JavaScript popup.js
// opens popup based on href specified in link.
function ShowPopup(myURL) {
popup = window.open(myURL,"MenuPopup","toolbars=0,scrollbars=1,location=0,statusbars=0,menubars=0,resizable=1, width=550,height=450,screenX=175,screenY=100,top=150,left=450'");
}
