<!--



// Creates simple, small pop-up window for quick messages.

// Be careful, the window size will only change if this 

// popup window isn't already open.



function popUp (title,text,width,height) {

    var w = window.open('','newwin','alwaysRaised,dependent,height='+height+',width='+width);

    w.focus();

    d = w.document;

    d.writeln('<HTML><HEAD><TITLE>' + title + '</TITLE></HEAD>');

    d.writeln('<BODY LINK="#000000" ALINK="#FF0000" VLINK="#000000">'); 

    d.writeln('<DIV ALIGN=CENTER><FONT FACE="Arial,Helvetica">');

    d.writeln(text + '<BR>');

    d.writeln('<FONT SIZE=-1><A HREF="" onClick="self.close()">CLOSE</A></FONT>');

    d.writeln('</FONT></DIV></BODY></HTML>');

    d.close();

}



//-->


