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()+'');

}



myFlaggy = 0;

function goAnimate() {

setTimeout("document.kompot.src = 'images/kompot2.jpg'",6000)

setTimeout("document.kompot.src = 'images/kompot1.jpg'",12000)



myFlaggy++ 			//this adds one to my counter



if(myFlaggy < 15) { 		//if counter is less than 15 go again

setTimeout("goAnimate()",12000)

}

}



function remWin() {

if (win && !win.closed) {

	win.close();

	}

}



function imgView(isr,tit) {

if (win && !win.closed) {

	win.close();

	}

setTimeout("myWin()",200);

setTimeout("windoc('"+isr+"','"+tit+"')",250);

}

var win;

function myWin() {

win = window.open('','picwin','menubar=no,toolbar=no,scrollbars=yes,resizable=yes')

}

function windoc(isr,tit) {

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 bgcolor=cccc99><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%>");

win.document.write("<tr><td valign=middle align=center><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>");

win.document.write("</tr></table></td></tr><tr><td valign=bottom align=center><font class=petw>Copyright © Michael Theodor Brokerage Inc. 2002-2003.</font></td></tr></table>");

win.document.close();

}


