var servername = document.location.hostname;

function popContactForm(contactID) {
	url = '/index.cfm?fa=contactform.general&who=' + contactID;
	window.open(url, 'contactForm', 'width=510,height=310,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popNewsVideo(contentID) {
	url = '/index.cfm?fa=pop.newsvideo&contentID=' + contentID;
	window.open(url, 'newsVideo', 'width=334,height=353,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popOverviewVideo(contentID) {
	url = '/index.cfm?fa=pop.overviewvideo&contentID=' + contentID;
	window.open(url, 'newsVideo', 'width=334,height=353,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popGallery(url) {
	window.open(url, 'studentGallery', 'width=700,height=556,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popCampus() {
	url = 'http://' + servername + '/flash/explore.cfm?module=campus-explorer';
	window.open(url, 'campusExplorer', 'width=700,height=556,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popFriendTell() {
	url = '/index.cfm?fa=pop.friendtell';
	window.open(url, 'tellAFriend', 'width=510,height=310,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popChatLive() {
	url = 'http://' + servername + '/chatlive/index.cfm';
	var NewWindow = window.open(url, 'ChatLive', 'width=460,height=241,dependent=no,resizable=yes,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function popChatLiveNew() {
	url = 'http://' + servername + '/chatlive-new/index.cfm';
	window.open(url, 'ChatLive', 'width=596,height=362,dependent=no,resizable=no,status=no,titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function topRollOn(tab) {
	if (tab == "chattab") {
		document.getElementById(tab).src = "images/topTabs/chatLive_on2.jpg"; }
	else if (tab == "flashtab") {
		document.getElementById(tab).src = "images/topTabs/visitFlash_on2.jpg"; }
	else if (tab == "infotab") {
		document.getElementById(tab).src = "images/topTabs/getInfo_on.jpg"; }
}

function topRollOff(tab) {
	if (tab == "chattab") {
		document.getElementById(tab).src = "images/topTabs/chatLive_off2.jpg"; }
	else if (tab == "flashtab") {
		document.getElementById(tab).src = "images/topTabs/visitFlash_off2.jpg"; }
	else if (tab == "infotab") {
		document.getElementById(tab).src = "images/topTabs/getInfo_off.jpg"; }
}

function setLinkLocation(location) {
	createCookie("WTREFERER",location,1);
}

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function closeThinForm() {
	document.getElementById("thinForm").style.display = "none";
	if (document.getElementById("infotab")) {
		document.getElementById("infotab").height = "25";
		document.getElementById("topLinkSpacer").width = "250";
	}
	createCookie("FSTHINFORMCLOSED","true",365)
}

