function printThis(){
if (window.print) {
agree = confirm('OK to print?  Verify that your printer is connected and ready and then click OK.');
if (agree){
window.print();
}                       
}else{
alert("Sorry, your browser doesn't support printing automatically.  Click on File > Print from your browser menu.");}    
}


function change(id, newClass) {

identity=document.getElementById(id);

identity.className=newClass;

}
