// JavaScript Document

window.onresize = onResizeCode;
window.onload = onLoadCode;

function onResizeCode() {
	fixLayout();
}

function onLoadCode() {
	fixLayout();
}

function fixLayout() {
	if(document.body.clientWidth>1250) document.getElementById("mainSiteTable").setAttribute("width","1250");
	else document.getElementById("mainSiteTable").setAttribute("width","100%");	
}

// admin mode toggle switch
function toggleAdminMode() {
	if (window.location.href.indexOf('?')==-1) window.location.href = window.location.href + "?admin=true";
	else {
		var start = window.location.href.indexOf('admin=true');
		// check if already there and remove if found
		if (start==-1) window.location.href = window.location.href + "&admin=true";
		else window.location.href = window.location.href.substring(0,start-1);
	}
}