
var SessionID = '';
var InstallationID = '';

if(SessionID != '' && InstallationID != '' && window.parent != window.self) {
	window.addEventListener ? window.addEventListener("load",initEditTool,false) : window.attachEvent("onload",initEditTool);
	document.write('<img src="http://www.clientconsole.com/_images/spacer.gif" alt="" width="1" height="27" /><br />');
}

function initEditTool() {	
	
	var ccEditable = document.getElementById('ccEditable');
	if(ccEditable) var HTML = '<img src="http://www.clientconsole.com/_images/spacer.gif" alt="" width="1" height="5" /><br /><a href="http://www.clientconsole.com/edit/editor.php?file=' + location.pathname + '" target="_top" style="color:#FFFFFF;">CLICK HERE TO EDIT THIS PAGE</a>';
	else var HTML = '<img src="http://www.clientconsole.com/_images/spacer.gif" alt="" width="1" height="5" /><br />These is no editable area on this page.';

	var Toolbar = document.createElement('div');
    Toolbar.id = 'mce_statue_bar';
	Toolbar.innerHTML = HTML;
	Toolbar.style.borderBottom = '1px solid #000000';
	Toolbar.style.margin = '0px';
	Toolbar.style.padding = '0px';
	Toolbar.style.position = 'fixed';
	Toolbar.style.top = '0px';
	Toolbar.style.left = '0px';
	Toolbar.style.width = '100%';
	Toolbar.style.height = '25px';
	Toolbar.style.textAlign = 'center';
	Toolbar.style.backgroundColor = '#666666';
	Toolbar.style.color = '#FFFFFF';
	Toolbar.style.zIndex = 20000;
	Toolbar.style.fontSize = '11px';
	Toolbar.style.fontFamily = 'Arial, Helvetica, sans-serif';	
	Toolbar.style.opacity = .9;
	Toolbar.style.filter = 'alpha(opacity=90);';
	document.body.insertBefore(Toolbar, document.body.firstChild);
	
}