function Get_Cookie(name) {
    var start = document.cookie.indexOf(name+"=");
    var len = start+name.length+1;
    if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
    if (start == -1) return null;
    var end = document.cookie.indexOf(";",len);
    if (end == -1) end = document.cookie.length;
    return unescape(document.cookie.substring(len,end));
}

function getTheDemo(hashName){
	if(Get_Cookie("FilledContacts") == "yes"){
	
		var listOfURLs = new Array();

		listOfURLs['banApPub'] = 'http://demos.centerft.com/BannerAp/Public/index.aspx';
		listOfURLs['banApAdm'] = 'http://demos.centerft.com/BannerAp/Public/login.aspx';
		listOfURLs['cardsRPub'] = 'http://demos.centerft.com/CardsRemembered/Public/index.aspx';
		listOfURLs['cardsRAdm'] = 'http://demos.centerft.com/CardsRemembered/Public/index.aspx';
		listOfURLs['resBrPub'] = 'http://demos.centerft.com/ResourceBridge/Public/index.aspx';
		listOfURLs['resBrMem'] = 'http://demos.centerft.com/ResourceBridge/Public/login.aspx';
		listOfURLs['resBrAdm'] = 'http://demos.centerft.com/ResourceBridge/Public/login.aspx';
		listOfURLs['orsPubPub'] = 'http://demos.centerft.com/ORSPUB/Public/login.aspx';
		listOfURLs['orsPubAdm'] = 'http://demos.centerft.com/ORSPUB/Public/login.aspx';
		listOfURLs['classODPub'] = 'http://demos.centerft.com/ClassOnDemand/Public';
		listOfURLs['classODAdm'] = 'http://demos.centerft.com/ClassOnDemand/Public/login.aspx';
		listOfURLs['ehitPub'] = 'http://demos.centerft.com/Ehit/Public/index.aspx';
		listOfURLs['ehitAdm'] = 'http://demos.centerft.com/Ehit/Public/login.aspx';
		listOfURLs['webCompPub'] = 'http://demos.centerft.com/WebComp/Public';
		listOfURLs['webCompAdm'] = 'http://demos.centerft.com/WebComp/Public/login.aspx';
		listOfURLs['hexaPub'] = 'http://demos.centerft.com/HexagonRecords/members/catList.asp';
		listOfURLs['hexaAdm'] = 'http://demos.centerft.com/HexagonRecords/admin/';
		listOfURLs['stockSTPub'] = 'http://demos.centerft.com/StockStudio/Public';
		listOfURLs['stockSTAdm'] = 'http://demos.centerft.com/StockStudio/Public/admin.aspx';
		listOfURLs['orbisMiPub'] = 'http://demos.centerft.com/ORBIS/login.aspx';
		listOfURLs['orbisMiAdm'] = 'http://demos.centerft.com/ORBIS/login.aspx';
//		listOfURLs['MineDePub'] = 'http://demos.centerft.com:8084/minedep/portal/root/1049798613687.1/Visitor';
//		listOfURLs['MineDeMem'] = 'http://demos.centerft.com:8084/minedep/portal/root/1049798613687.1/Visitor.0/Member';
//		listOfURLs['MineDeAdm'] = 'http://demos.centerft.com:8084/minedep/portal/root/1049800646609.43/Visitor.0/Admin.13/';
//		listOfURLs['jejPub'] = 'http://demos.centerft.com:8083/jej/jobejob/0.0/';
//		listOfURLs['jejAdm'] = 'http://demos.centerft.com:8083/jej/jobejob/1049976974031.6/Visitor.0/Admin';
		listOfURLs['ahaSWPub'] = 'http://demos.centerft.com/AhaStrokeWebcast/Public/index.aspx';
		listOfURLs['ahaSWAdm'] = 'http://demos.centerft.com/AhaStrokeWebcast/Public/login.aspx';
		listOfURLs['hemoBroadPub'] = 'http://demos.centerft.com/Hemostasis/Public/index.aspx';
		listOfURLs['hemoBroadAdm'] = 'http://demos.centerft.com/Hemostasis/Public/login.aspx';
		listOfURLs['herbsMaPub'] = 'http://demo2.icago.com';
		listOfURLs['herbsMaAdm'] = 'http://demo2.icago.com/adm';
		listOfURLs['mapecoPub'] = 'http://demo1.icago.com';
		listOfURLs['mapecoAdm'] = 'http://demo1.icago.com/admin';
		listOfURLs['siteCSPub'] = 'http://demo.buildwebeasy.com/';
		listOfURLs['siteCSAdm'] = 'http://demo.buildwebeasy.com/_admin';

		if(listOfURLs[hashName]){
//			w = window.open(listOfURLs[hashName], 'FilePopup', 'width=800,height=600,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes');
//			w.focus();
			location.href = listOfURLs[hashName];
		}else{
			alert('The demo is not available right now. Please try another one.');
		}
	}else{
		location.href = "contact.htm?demo=" + hashName;
	}
}
