// JavaScript Document
function fontZoom(size)
{
 document.getElementById('contentarea').style.fontSize=size+'px'
}

function openprintwindow(ucode){
	window.open ("print.php?ucode="+ucode, "newwindow", "top=0,left=0,height=600, width=700, toolbar=no, menubar=yes, scrollbars=yes, resizable=no, location=no, status=no");
}

function addtofavortie(){
	var fav_url = 'http://www.orite.com.au/';
	var fav_title = 'Orite IT Solutions Sydney Australia';
	if (document.all)
	window.external.addFavorite(fav_url, fav_title);
	else if (window.sidebar)
	window.sidebar.addPanel(fav_title, fav_url, "")
	
}

function swithdisplay(theid){
		obj=document.getElementById(theid+'l');
		obj2=document.getElementById(theid+'f');
		if(obj.style.display=='none'){
			obj.style.display='inline';
			obj2.style.display='none';
		}
		else{
			obj.style.display='none';
			obj2.style.display='inline';	
		}
}