// SECURITY ISSUE FIX
// CG 19/08/10
// Prevents clickjacking by not allowing the site to be part of a frame
// Exception added for ko-admin
		
	if(getBaseURL() != 'https://ssl.theitbridge.com/' && getBaseURL() != 'https://secure.theitbridge.com/') {
		if (top!=self) top.location.href=self.location.href
	}

	function getBaseURL() {
		var url = location.href;  // entire url including querystring - also: window.location.href;
		var baseURL = url.substring(0, url.indexOf('/', 14));
		return baseURL + "/";
    }

