// JavaScript Document
WIDTH = 500;
HEIGHT = 375;


function openThumb(eventName, eventDate, numberOfPics, courtesyOf) {
	picsYear = "20";
	picsYear += eventDate.substring(6);
	picsYear += "pics";
	bigPath = picsYear + "/" + eventDate + "/Image_";
	smallPath = picsYear + "/" + eventDate + "/Thumb_";
	
	thumbText = "<HTML><HEAD><TITLE>Chicago Twenty Something : " + eventName + " : " + eventDate + "</TITLE><script LANGUAGE=\"JavaScript\" src=\"includes/photos.js\"></script></HEAD><BODY vLink=#cccccc aLink=#cccccc link=#cccccc bgColor=#000000><CENTER><TABLE align=center cellSpacing=0 cellPadding=0 width=700 border=0><TR><TD align=center width=700><CENTER><IMG SRC='images/header.png' /><font face='Trebuchet MS' color=#999999 size='-1'><p><b>Please wait for all images to load before selecting a photo.</b><br>You may need to double click to view a photo or press Ctrl + R when the window loads.</p></font><TABLE align=center width=650 cellSpacing=0 cellPadding=5 width='100%' bgColor=#999999 border=0>";

	thumbText += "<tr>";
	
	for(i=1; i<[numberOfPics+1]; i++) {
		
		thumbText += "<TD width=124 bgColor=#999999><A href=\"javascript:openPic('" + bigPath + "', " + i + ", " + numberOfPics + "," + courtesyOf + ");\"><IMG src='" + smallPath + i + ".jpg'></A></TD>";
		
		if ((i%5) == 0) {
   			thumbText += "</tr><tr>"; 
		}
	}

	thumbText += "</tr>";
	
	thumbText += "<TR bgColor=#000000><TD align=right bgColor=#000000 colSpan=5 height=25><IMG height=26 src='http://www.chicagotwentysomething.com/images/logo.gif' width=227></TD></TR><TR><TD align=center bgColor=#000000 colSpan=5><p><font face='Trebuchet MS'><a href='http://www.chicagotwentysomething.com/'>BACK</a></font></p></TD></TR><TR><TD align=center bgcolor=#000000 colSpan=5><font face='Trebuchet MS' color=#999999 size='-1'>NOTE: If all photos did not load please click refresh and wait for each photo to load before enlarging</font></TD></TR></TABLE></CENTER></TD></TR></TABLE></CENTER></BODY></HTML>";
	
	parent.document.open();
	parent.document.write(thumbText);
	parent.document.close();
}

function openPic(PATH, INDEX, NUMBEROFPICS, courtesyOf) {
	backLink = "b_ladies_night.htm";
	windowprops = "left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+70);
	INDEXNEXT = (INDEX + 1);
	INDEXLAST = (INDEX - 1);

	text = "<HTML><HEAD><TITLE>Chicago Twenty Something </TITLE><script LANGUAGE='JavaScript' src='includes/photos.js'></script></HEAD><BODY vLink=#cccccc aLink=#cccccc link=#cccccc bgColor=#000000 marginheight='0' marginwidth='0' style='margin-left:0; margin-top:0; margin-right:0; margin-bottom:0;'><CENTER><TABLE cellSpacing='0' cellPadding='0'><tr><td height='20'></td></tr><tr><td><img src='" + PATH + INDEX + ".jpg' border='2' style='border-color:#CCCCCC'></td></tr><tr><td align='center'><p><font color='#ffffff' face='Trebuchet MS'>";
	
	if (courtesyOf == 1) {
		text += "Pictures courtesy of: <a href='http://www.GoMoonbathing.com' target='_blank'>Moonbathing Productions</a> - ";
	}
	
	text += "<A href=\"javascript:openPic('" + PATH + "', " + INDEXLAST + ", " + NUMBEROFPICS + "," + courtesyOf + ");\"><img src='http://www.chicagotwentysomething.com/images/prev.png' alt='Last' border='0' /></a><img src='filler.png'><a href='javascript:window.close()'>Close</a><img src='filler.png'><A href=\"javascript:openPic('" + PATH + "', " + INDEXNEXT + ", " + NUMBEROFPICS + "," + courtesyOf + ");\"><img src='http://www.chicagotwentysomething.com/images/next.png' alt='Next' border='0' /></a></font></p></td></tr></CENTER></BODY></HTML>";
	
	picWindow = window.open("", "preview", windowprops);
	picWindow.document.open();
	picWindow.document.write(text);
	picWindow.document.close();
	picWindow.focus();
}

ScrollSpeed = 200;
ScrollChars = 1;

function ScrollMarquee() {
window.setTimeout('ScrollMarquee()', ScrollSpeed);
var msg = document.scrollform.email.value;
document.scrollform.email.value = msg.substring(ScrollChars) + msg.substring(0, ScrollChars);
}

