var url;
var title;

function openPopWin(url,title)
{
var OpenWindow=window.open("", "newwin", "height=250,width=325,screenX=200,screenY=25,left=200,top=25");
thisURL=url;
thisTitle=title;
OpenWindow.document.write("<HTML><head>")
OpenWindow.document.write("<title>" + thisTitle + "</title>")
OpenWindow.document.write("<LINK REL='stylesheet' TYPE='text/css' HREF='flm.css'></head>")
OpenWindow.document.write(thisURL)
OpenWindow.document.write("<center><a href='' class='popUp' onClick='self.close()'>Close Window</a></center><br><br>")
OpenWindow.document.write("</html>")
}