<!-- Begin

// This is the pop up window script
 function openPopup(href, name, width, height, menu, status, scroll, loc, resize, title, toolbar){
 var attributes = '';
 attributes = attributes + ',width=' + width;
 attributes = attributes + ',height=' + height;
 attributes = attributes + ',left=' +(screen.width - width) / 2;
 attributes = attributes + ',top=' +(screen.height - height) / 2;
 attributes = attributes + ',menubar=' + (menu==1?'yes':'no');
 attributes = attributes + ',status=' + (status==1?'yes':'no');
 attributes = attributes + ',scrollbars=' + (scroll==1?'yes':'no');
 attributes = attributes + ',location=' + (loc==1?'yes':'no');
 attributes = attributes + ',titlebar=' + (title==1?'yes':'no');
 attributes = attributes + ',toolbar=' + (toolbar==1?'yes':'no');
 attributes = attributes + ',resizable=' + (resize==1?'yes':'no');
 attributes = attributes.substring(1,attributes.length);
 var Popup = window.open(href, name, attributes)
 }
// 0 is off, 1 is on
//-->


<!-- Begin

// This is the image mouseover script
function msover(doc_item,textimage)
    {document[doc_item].src=textimage;}

//This is the new window script
function OpenWin(theURL,winName,features) 
    {window.open(theURL,winName,features);}
    
//This removes the link border on images
function RemoveDot()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = RemoveDot;
}
file:

//  End -->

<!-- Begin
//This is the menu fade-in fade-out script
menufadeObjects = new Object();
menufadeTimers = new Object();

function menufade(object, destOp, loopdelay, changepercentage){
if (!document.all)
return
    if (object != "[object]"){  //do this so I can take a string too
        setTimeout("menufade("+object+","+destOp+","+loopdelay+","+changepercentage+")",0);
        return;
    }
        
    clearTimeout(menufadeTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    changepercentage=Math.min(direction*diff,changepercentage);
    object.filters.alpha.opacity+=direction*changepercentage;

    if (object.filters.alpha.opacity != destOp){
        menufadeObjects[object.sourceIndex]=object;
        menufadeTimers[object.sourceIndex]=setTimeout("menufade(menufadeObjects["+object.sourceIndex+"],"+destOp+","+loopdelay+","+changepercentage+")",loopdelay);
    }
}

function seatingchart() {
	window.open('http://www.therep.org/images/seating_chart_color_90.jpg','','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}

function big_movie(filename) {
	var d = document;
	d.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="724" height="280" id="nav" align="middle">\n');
	d.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	d.write('<param name="movie" value="'+filename+'" />\n');
	d.write('<param name="quality" value="high" />\n');
	d.write('<param name="bgcolor" value="#ffffff" />\n');
	d.write('<param name="wmode" value="transparent" />\n');
	d.write('<embed src="'+filename+'" quality="high" bgcolor="#ffffff" width="724" height="280" name="nav" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" />\n');
	d.write('</object>\n');
}

function small_movie() {
	var d = document;
	d.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="724" height="70" id="navInside" align="middle">\n');
	d.write('<PARAM name="allowScriptAccess" value="sameDomain" />\n');
	d.write('<PARAM name="movie" value="navInside.swf" />\n');
	d.write('<PARAM name="quality" value="high" />\n');
	d.write('<PARAM name="bgcolor" value="#ffffff" />\n');
	d.write('<EMBED src="navInside.swf" quality="high" bgcolor="#ffffff" width="724" height="70" name="navInside" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	d.write('</OBJECT>\n');
}

function cal_movie() {
	var d = document;
	d.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="186" height="199" id="calendar" align="middle">\n');
	d.write('<PARAM name="allowScriptAccess" value="sameDomain" />\n');
	d.write('<PARAM name="movie" value="calendar.swf" />\n');
	d.write('<PARAM name="quality" value="high" />\n');
	d.write('<PARAM name="bgcolor" value="#ffffff" />\n');
	d.write('<EMBED src="calendar.swf" quality="high" bgcolor="#ffffff" width="186" height="199" name="calendar" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	d.write('</OBJECT>\n');
}
// End -->
