// JavaScript Document
function bspopUp(theURL, name, w, h, l, t)
{
var windowName = name;
var features = "status=yes,scrollbars=yes,resizable=yes,alwaysRaised=yes,width="+w+",height="+h+",left="+l+",top="+t+"";
var newWindow = window.open("", name, features);
newWindow.focus();
newWindow.location = theURL;
}
var w1;
var n = 0;
function popup(info)
{
var title = "";
var w = "600", h = "400";
var data = "";
title="Today's Information";data=info;
if (n != 0) { w1.close();n = 0; }
var f = "status=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+"";
w1 = window.open("", "nw1", f);
n = 1;
w1.focus();
w1.document.writeln("<html>\n<head>\n<title>" + title + "</title>\n</head>\n<body>");
w1.document.writeln("<pre>"+ data + "</pre>");
w1.document.writeln("</body>\n</html>");
w1.document.close();
}