<!--
$j(document).ready(function () {
	if (parent.frames.length > 0) { logFrames(location.host, document.referrer); }
	else { checkBaseToURL(); }
});
function checkBaseToURL() {
	var baseTag  = document.getElementsByTagName("base");
	var baseHREF = baseTag[0].href.replace('http://', '').replace('https://', '').replace('/','');
	var locHREF  = location.host.replace('http://','').replace('https://', '').replace('/','');
	if (locHREF != baseHREF) { location.href = baseTag[0].href; }
}
function logFrames(cm_site, frame_url) {
	$j.ajax({
		url: '/index_scripts/framed_sites_log.php',
		type: 'POST',
		data: 'site='+cm_site+'&frame='+frame_url
	});
}
// -->

