function rollEm(x,y) {
document.images[x].src=y
}

function imgView(isr,tit,descr) {
if (win && !win.closed) {
	win.close();
	}
setTimeout("myWin()",200);
setTimeout("windoc('"+isr+"','"+tit+"','"+descr+"')",250);
}
var win;
function myWin() {
win = window.open('','picwin','menubar=no,toolbar=no,scrollbars=yes,resizable=yes')
}
function windoc(isr,tit,descr) {
win.document.open();
win.document.write("<html><head><title>"+tit+" - Click on image to close this window</title>");
win.document.write("<link href='http://www.eswap.ca/aa/script/common.css' rel=stylesheet type='text/css'></head>");
win.document.write("<body leftmargin=0 topmargin=0><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%>");
win.document.write("<tr><td align=center valign=middle><table cellpadding=10 cellspacing=0 border=0><tr><td><a href='javascript:close()'>");
win.document.write("<img src="+isr+" border=0 alt='Click to close'></a></td><td valign=top>&nbsp;");
win.document.write("</td></tr></table></td></tr></table></body></html>");
win.document.close();
}