	//open the talklive window
	function fstlWin() {
		window.open('/talklive/index.cfm?cust_id=1&entry=1', 'talklivewin', 'scrollbars=no,directories=no,width=480,height=240,menubar=no,personalbar=no,resizable=no,screenX=0,left=0,screenY=0,top=0,status=no,toolbar=no');
	}
	// Function to make sure rollovers only happen with inactive items (i.e. If we
	// are on the Overview, don't make rollovers happen with the Overview link).
	function rollWrap(fa, item, state) {
		if (item != fa) highlight(item, state);
	}
	function checkLen(){
		if (document.searchForm) {
			with(document.searchForm){
				if(keywords.value=="") alert("Please enter a search phrase");
				else submit();
			}
		}
	}
	
	//open the campus tour window
	function enableUsers(s,j,fu,u){
		var h;
		var w;
		var fa;
		//alert(u);
		switch(s){
			case 1:
				if(u != '' && u != undefined) {
					fa=u;
					w=671;h=505;
				}
				else {
					fa="gallery.main/";
					if(typeof(j)=='number') fa=fa+"dp_id/"+j+"/";
					fa=fa+"Gallery";
					w=671;h=505;
				}
				break;
			case 2:fa="pop.tellfriend/TellAFriend";w=525;h=320;break;
			case 3:fa="pop.contactform/sendto/" + j.toString() + "/contact-us";w=525;h=360;break;
			case 4:fa="pop.media/media_id/" + j + "/media-player";w=357;h=410;break;
			case 5:fa="pop.tlminiform/sendto/" + j.toString() + "/talk-live-form";w=525;h=360;break;
			case 6:fa="pop.audio/group/" + j + "/media-player";w=357;h=175;break;
			default:
				fa="tour.main/";
				if(typeof(j)=='number') fa=fa+"rm_id/"+j+"/";
				if(typeof(fu)=='number') fa=fa+"rmcat_id/"+fu+"/";
				fa=fa+"CampusTour";
				w=720;h=545;
				//alert(fa);
				break;			
		}
		window.open('/index.cfm/fa/'+fa,'Popped','width='+w+',height='+h+',scrollbars=no');		
	}