	function doClick(what)
	{
		if ( what == "Harlem" ) window.location='http://www.optimalspaces.com/prof_harlem.html';		
		else if ( what == "WashingtonHeights") window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "EastHarlem") window.location='http://www.optimalspaces.com/prof_harlem.html';		
		else if ( what == "ColumbiaUniversity") window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "UpperEastSide") window.location='http://www.optimalspaces.com/testimonials.html';		
		else if ( what == "UpperWestSide") window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "LincolnSquare") window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "MidtownWest")   window.location='http://www.optimalspaces.com/testimonials.html'; 
		else if ( what == "GarmentDistrict") window.location='http://www.optimalspaces.com/prof_garment.html';		
		else if ( what == "PlazaDistrict") window.location='http://www.optimalspaces.com/prof_plaza.html';	
		else if ( what == "GrandCentral") window.location='http://www.optimalspaces.com/prof_grandcentral.html';
		else if ( what == "MurrayHill" ) window.location='http://www.optimalspaces.com/prof_murray.html';
		else if ( what == "MidtownEast" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "Chelsea" ) 	window.location='http://www.optimalspaces.com/prof_chelsea.html';
		else if ( what == "MidtownSouth" ) window.location='http://www.optimalspaces.com/testimonials.html';		
		else if ( what == "WestVillage" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "Noho" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "EastVillage" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "Soho" )  	window.location='http://www.optimalspaces.com/prof_soho.html';	
    	else if ( what == "LowerEastSide" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "Tribeca" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "InsuranceDistrict" )  	window.location='http://www.optimalspaces.com/prof_insurance.html';							
		else if ( what == "Chinatown" ) window.location='http://www.optimalspaces.com/testimonials.html';
		else if ( what == "CityHall" ) window.location='http://www.optimalspaces.com/whyus.html';
		else if ( what == "WorldsFinancialDistrict" ) window.location='http://www.optimalspaces.com/prof_financial.html';		
	    else if ( what == "WallStreet" ) window.location='http://www.optimalspaces.com/whyus.html';		
}

	function Check()
	{
		if ( document.cookie ) {
			var the_cookie = document.cookie;
			the_cookie = unescape(the_cookie);
	
			var broken_cookie = the_cookie.split("=");
			var the_values = broken_cookie[1];
	
			var seperated_values = the_values.split("%");
			var proper_values = "";
			for ( var loop=0; loop < seperated_values.length; loop++ ) 
			{
				proper_values = seperated_values[loop];
			
				var broken_info = proper_values.split(":");
							
				var the_property = broken_info[0];
				var the_value = broken_info[1];
				the_info[the_property] = the_value;
			}				
	
			var Name = the_info["Name"];
	
			if ( Name == "Not Filled" ) {
				return("NoCookie");
			} else {
				return("Cookie");
			}
		}

		return("NoCookie");
	}