function loadFrame(div,section){
	document.getElementById("loading").innerHTML = '<img src="images/loading.gif">';
	document.getElementById(div).innerHTML ='<iframe id="content" src="'+section+'" scrolling="no" height="100%" width="100%" frameborder="0"></iframe>';
	
}

function loadUrl(){
		

	ind = document.location.href.indexOf("?loadFrame=")+11;
	if (ind > 11){
		loadFrame("contentcolumn",document.location.href.substring(ind));
	}
    else{
		loadFrame("contentcolumn","home.html");
	}
}


