// Hide tags with id="noprint" 
//when printing
function printSetup(){
	var a = document.all.item("noprint");
	if (a!=null){
		if (a.length!=null){	//multiple tags found
			for (i=0; i< a.length; i++){
				a(i).style.display = window.event.type == "beforeprint" ? "none" :"inline";
			}
		}else{ //only one tag
			a.style.display = window.event.type == "beforeprint" ? "none" :"inline";
    }
	}
} 

