<!--
var win = null;
function openPopup(loc, w, h) {
if (win != null) {
if (document.layers) {
win.setResizable(true);
win.resizeTo(w,h);
win.setResizable(false); }
else win.resizeTo(w,h); }
var x = 320; var y = 240;
if ((screen.width != null) && (screen.height != null)) { 
x = (screen.width - w)/2; y = (screen.height - h)/2; }
var winoptions ="scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width="+w+",height="+h+",screenX="+x+",screenY="+y+",top="+y+",left="+x;
win = window.open(loc,"suribridge",winoptions); 
win.moveTo(x,y);
win = null; }
//-->