// JavaScript Document
function popupWindow2(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=800,height=600,screenX=75,screenY=100,top=75,left=100')
}
function makePopUpLink(fileName, text) {
document.write('<a href="javascript:popupWindow2(');
document.write("'" + fileName + "'");
document.write(')"><img src="');
document.write(fileName);
document.write('" alt="');
document.write(text);
document.write('" title=" ');
document.write(text);
document.write(' " width="150" height="113" />');
document.write('<br /><span class="imgLink">');
document.write(text);
document.write('</span>');
document.write('</a><br />');
}
