// JavaScript Document

function showdiv(thedivid,thestyle){
		document.getElementById(thedivid).style.display = thestyle;
}
function showdivs(){
		for ( i=0; i < arguments.length; i=i+2) {
			showdiv(arguments[i],arguments[i+1]);
		}
}