// javascript util

	function fcom_getRequestParameter(param) {
		var q = document.location.search || document.location.hash;
		if (param == null) { return q; }
		if(q) {
			var pairs = q.substring(1).split("&");
			for (var i=0; i < pairs.length; i++) {
				if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
					return pairs[i].substring((pairs[i].indexOf("=")+1));
				}
			}
		}
		return "";
	}
	var fcom_getQueryParamValue = fcom_getRequestParameter;
	var fcom_URLValue = document.location.protocol
						+ "//"
						+ document.location.host
						+ document.location.pathname
						+ document.location.search
						+ document.location.hash
						;
	var fcom_NrmURLHost = 'http:'
						+ "//"
						+ document.location.host
						;
	var fcom_SSLURLHost = 'https:'
						+ "//"
						+ document.location.host
						;
	
