if(document.getElementById){
	document.writeln('<style type="text/css" media="all">');
	document.writeln('<!--');
	document.writeln('.sidehide{display: none;}');
	document.writeln('-->');
	document.writeln('</style>');
}

function showHide(id){
	var disp = document.getElementById(id).style.display;

	if(disp == "block"){
		document.getElementById(id).style.display = "none";
	}else{
		document.getElementById(id).style.display = "block";
	}
	return false;
}

document.write('<style type="text/css"><!--')

if(navigator.platform.indexOf("Win")!=-1){
		document.write('.small {font-size: 10px;}')
}

if(navigator.platform.indexOf("Mac")!=-1){
		document.write('.small {font-size: 9px;}')
}

document.write('--></style>');

