<!--

	function rollOver(name, frameNum){
		var browser = navigator.appName
			if(document.images){
				if(browser == "Netscape"){
					eval("document['" + name + "'].src = '../images/menu/" + name + "_f" + frameNum + ".gif'");
       				
       				}else{
						eval("document.all['" + name + "'].src = '../images/menu/" + name + "_f" + frameNum + ".gif'");
				}	
			}
	}

	



	function openChart(){
		var animWin=window.open("partyad.html", "Party", "status=no,resizable=no,scrollbars=no,width=640,height=147");
	}
	
	function openFashion(pageTitle,imageHeight,imageWidth){
		var windowHeight = eval(imageHeight) + 100;
		var windowWidth = eval(imageWidth) + 50;
		var newWindow = window.open(pageTitle, "UrbanUnderpants", "status=no,resizable=yes,scrollbars=yes,width=" + windowWidth + ",height=" + windowHeight + "");
	}
	
	function enlargeArt(imageName,artistName,date,title,imageWidth,imageHeight) {
		if (title == '') {
			title = "Untitled";
		}
		var windowHeight = eval(imageHeight) + 100;
		var windowWidth = eval(imageWidth) + 50;
		var newWindow = window.open("","newWindow","status=no,resizable=yes,scrollbars=yes,width=" + windowWidth + ",height=" + windowHeight + "");
		newWindow.document.open();
		newWindow.document.writeln('<html><head><title>'+title+', '+artistName+'</title><style type="text/css"><!--a:link { font-family: Verdana, sans-serif, Arial, Helvetica; font-size: 10px; font-style: normal ; color: #FFFFFF; text-decoration: none; letter-spacing: 1px}a:hover { font-family: Verdana, sans-serif, Arial, Helvetica; font-size: 10px; font-style: normal ; color: #FFFFFF; text-decoration: underline; letter-spacing: 1px} .artist{  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #FFFFFF; font-style: italic} .title{  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #FFFFFF; font-style: normal}--></style></head><body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#FFFFFF">'); 
		newWindow.document.writeln('<table border="0" cellpadding="10" cellspacing="0" width="100%">');
		newWindow.document.writeln('<tr>');
		newWindow.document.writeln('<td align="left"><span class="title">' + title + ', ' + date + '</span><br /><span class="artist">' + artistName + '</span></td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('<tr valign="top">');
		newWindow.document.writeln('<td><img src="images/'+imageName+'" alt="'+title+'" width="'+imageWidth+'" height="'+imageHeight+'">');
		newWindow.document.writeln('<p><a href="" onClick="javascript:self.close();">close window</a></p></td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('</table>');
		newWindow.document.writeln('</body></html>');
		newWindow.document.close();
		newWindow.focus();
	}
	
	function enlargeFashion(imageName,title,caption,location,details,imageWidth,imageHeight) {
		var windowHeight = eval(imageHeight) + 100;
		var windowWidth = eval(imageWidth) + 50;
		var newWindow = window.open("","newWindow","status=no,resizable=yes,scrollbars=yes,width=" + windowWidth + ",height=" + windowHeight + "");
		newWindow.document.open();
		newWindow.document.writeln('<html><head><title>'+title+'</title><style type="text/css"><!--A {font-family: verdana, helvetica, arial; color: #000099; text-decoration: none;} A:hover {font-family: verdana, helvetica, arial; color: #0000CC; text-decoration: underline;} .details {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px;color: #333333;} .location {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px; font-weight: bold; color: #333333;} .caption {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px; font-style: italic; color: #FF3399;}--></style></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">'); 
		newWindow.document.writeln('<div align="center">');
		newWindow.document.writeln('<table border="0" cellpadding="10" cellspacing="0" width="100%">');
		newWindow.document.writeln('<tr>');
		newWindow.document.writeln('<td align="left"><span class="caption">' + caption + '</span><br /><span class="artist">' + artistName + '</span></td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('<tr valign="top">');
		newWindow.document.writeln('<td><img src="images/'+imageName+'" alt="'+title+'" width="'+imageWidth+'" height="'+imageHeight+'"></td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('<tr>');
		newWindow.document.writeln('<td align="left" class="location">Location: '+location+'</td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('<tr>');
		newWindow.document.writeln('<td align="left" class="details">'+details+'<p><a href="" onClick="javascript:self.close();">close window</a></p></td>');
		newWindow.document.writeln('</tr>');
		newWindow.document.writeln('</table>');
		newWindow.document.writeln('</div>');
		newWindow.document.writeln('</body></html>');
		newWindow.document.close();
		newWindow.focus();
	}
	

	function printTodaysDate() {
		if(parseInt(navigator.appVersion) < 4 && navigator.appName == "Netscape"){}
			else{
				var monthName = new Array( "January", "Feburary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" );
				var dayName = new Array( "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" );
				var now = new Date();
				document.write( '<span class="primarytext">' + dayName[now.getDay()] +
					"<br />" + monthName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear() + '</span>' );
			}
	}
	
	function validateForm() {
		if (document.bruce.fname.value == "") {
			alert("Please enter your first name.");
			return false;
		} else if (document.bruce.lname.value == "") {
			alert("Please enter your last name.");
			return false;
		} else if (document.bruce.email.value == "") {
			alert("Please enter your email address.");
			return false;
		} else if (document.bruce.city.value == "") {
			alert("Please enter your city of residence.");
			return false;
		} else if (document.bruce.state.value == "") {
			alert("Please enter your state of residence.");
			return false;
		} else if (document.bruce.zip.value == "") {
			alert("Please enter your zip code.");
			return false;
		} else if (document.bruce.age.value == "") {
			alert("Please enter your age.");
			return false;
		} else if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.bruce.email.value))) {
			alert("Come on, give us a REAL email address.");
			return false;
		} else {
			return true;
		}
	}
	
	
	function validateForm2() {
		if (document.bruce.fname.value == "") {
			alert("Please enter your first name.");
			return false;
		} else if (document.bruce.lname.value == "") {
			alert("Please enter your last name.");
			return false;
		} else if (document.bruce.email.value == "") {
			alert("Please enter your email address.");
			return false;
		} else if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.bruce.email.value))) {
			alert("Come on, give us a REAL email address.");
			return false;
		} else {
			return true;
		}
	}
	
	function validateEmail() {
		if (document.bruce.email.value == "") {
			return true;		
		} else {
			if ((/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.bruce.email.value))) {
				return true;
			} else {
				alert("Come on, give us a REAL email address.");
				return false;
			}
		}
	}
//-->