<!--
/*Originally by George Chiang (WA JavaScript site www.abstract.simplenet.com)
Credit must stay intact for use.  Slightly modified by Kris.*/
function fullsize(bgname){
win2=window.open("","","width=750,height=750")
if (win2){
win2.focus()
win2.document.open()
win2.document.write("<head><title>"+bgname+'</title></head>')
win2.document.write("<body>")
win2.document.write("<center>")
win2.document.write("<img src="+'"'+bgname+'"'+' style="border: 5px solid #666666;">')
win2.document.write("</center>")
win2.document.write("</body>")
win2.document.close()
}
else
alert("Failed in spawning a new window!")
}
//-->

