function rollEm(x,y) {
document.images[x].src=y
}

function myDate() {
var now = new Date();
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
document.write(''+dayNames[now.getDay()]+', '+ monNames[now.getMonth()]+' '+ now.getDate() + ', ' + now.getFullYear()+'');
}

function remWin() {
if (win && !win.closed) {
	win.close();
	}
}

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='../script/common.css' rel=stylesheet type='text/css'><LINK href='/script/common.css' rel=stylesheet type='text/css'></head>");
win.document.write("<body leftmargin=0 topmargin=0 background='/images/bg.gif'><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%>");
win.document.write("<tr><td valign=top><table cellpadding=10 cellspacing=0 border=0><tr><td><a href='javascript:opener.remWin()'>");
win.document.write("<img src="+isr+" border=0 alt='Click to close'></a></td><td valign=top><img src='images/hg.gif' width=1 height=50>");
win.document.write("<font class=texts>"+descr+"</font></td></tr></table></td></tr><tr><td valign=bottom align=center><font class=petit>Copyright © 2003 Kurbatoff Art Gallery</font></td></tr></table></BODY></HTML>");
win.document.close();
}
