// Akamas Scripts
	


function openNotebook(url){
	newNotebook = window.open(url, "myNotebook", "width=680,height=500,scrollbars=1,top=30,left=30");
	}
	
function openFeedback(url){
	newFeedback = window.open(url, "myFeedback", "width=580,height=460,scrollbars=1,status,top=30,left=30");
	}
	
function openMyacc(url){
	window.open(url, 'Window', 'width=570,height=480,status,scrollbars,top=30,left=30');
	}
	
function openAssignment(url){
	window.open(url, 'Window', 'width=600,height=550,status,scrollbars,top=30,left=30');
	}
	
function printpage(url){
	maccw=window.open(url,"printpage","width=540,height=500,status,scrollbars,top=30,left=30");
	}
	
function printOnLoad(){
	window.print();
	}


// Image Swap
function swapImage(objName, imgPath) {
	document[objName].src=imgPath;
	}
	
// Showhide
function showHide(id) {
	if (!document.getElementById) return;
	var obj = document.getElementById(id);
	var hidden = (obj.style.display != "block");
	var shown = (obj.style.display != "none");
	if (hidden) {
		obj.style.display = "block";
	} else {
		obj.style.display = "none";
	}
}

// Email scrambler
function escramble(){
 var a,b,c,d,e,f,g,h,i
 a='<a class="anchor" href=\"mai'
 b='contact'
 c='\">'
 a+='lto:'
 b+='@'
 e='</a>'
 f=''
 b+='akamas.co.uk'
 g='<img src=\"'
 h=''
 i='\" alt="Email us." border="0">'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b
 document.write(a+b+c+d+e)
}

function escramble_supportline(){
 var a,b,c,d,e,f,g,h,i
 a='<a class="anchor" href=\"mai'
 b='supportline'
 c='\">'
 a+='lto:'
 b+='@'
 e='</a>'
 f=''
 b+='akamas.co.uk'
 g='<img src=\"'
 h=''
 i='\" alt="Email us." border="0">'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b
 document.write(a+b+c+d+e)
}