		var s_code=s.t();if(s_code) document.write(s_code);
		function capitalize(phrase){
		//trim trailing or leading white space
		phrase = phrase.replace(/^\s+|\s+$/g, '');
			if (phrase.length > 4){
				var pattern = /(\S)(\S*)/ ; // a letter, and then one, none or more letters 
				phrase = phrase.toString();
		   	 	var a = phrase.split(/\s+/g); // split the sentence into an array of words
			    for (i = 0 ; i < a.length ; i ++ ) {
			        var parts = a[i].match(pattern); // just a temp variable to store the fragments in.
			        var firstLetter = parts[1].toUpperCase();
			        var restOfWord = parts[2];
			        a[i] = firstLetter + restOfWord; // re-assign it back to the array and move on
			    }
		    	
		    	phrase = a.join(' '); // join it back together
			}
				return phrase;
		}
			 s.pageName = capitalize(s.pageName);
			 s.prop2 = capitalize(s.prop2);
			 s.prop3 = capitalize(s.prop3);
			 s.prop5 = capitalize(s.prop5);
			 s.prop6 = capitalize(s.prop6);
			 s.prop7 = capitalize(s.prop7);
			 s.eVar1 = capitalize(s.eVar1);
			 s.eVar3 = s.eVar3.toString();
			if (s.eVar3.length > 4){
				 s.eVar3 = capitalize(s.eVar3);
			 }