// JavaScript Document
var newwindow;
function popstatic(url,tp,lp)
{
var leftPos = lp;
var topPos = tp;
var width = 250;
var height = 100;
var params = 'width='+width+', height='+height;
params += ', top='+topPos+', left='+leftPos;
newwindow = window.open(url,'name',params);
if(window.focus)
{newwindow.focus()}
}
