<!--begin
/*
 * Popup only when clicking a link for more information.
 */
var popup;
var height=620;
var width=700;
var left=(screen.width/2)-(620/2);
var top=(screen.height/2)-(700/2);
function linkpop(filename){
popup = window.open(filename, "","height="+height+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,directories=no");
}
// end -->

