//Frame busting - prevents clickjacking
if (top!=self) top.location.href=self.location.href;

window.addEvent('domready',function(){$$('.drag').each(function(el){new Drag(el,{handle:el.getElement('handle')});});});


//+++++++++++++ Default Home Page/ External systems - Matt ++++++++++++++++++++++++++
//Hides the <DIV> that contains default content and makes <iframe> visibile for external systems
function externalFrame(url){
	document.getElementById("desktopContent").style.display="none";
	document.getElementById("externalIFrame").style.display="inline";
	frames["externalIFrame"].location.href=url;
}//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


