 <!--
 function apripopup(URL, W, H, scrolling){
X = (screen.width - W) / 2;
Y = (screen.height - H) / 2;
P = "width=" + W + ",height=" + H + ",";
P+= "top=" + Y + ",left=" + X + ",";
P+= "scrollbars="+scrolling+",status=no,resizable=no";
POP = window.open(URL, "", P);
POP.window.focus();
}
 //-->