//\//////////////////////////////////////////////////////////////////////////////////
//\
//\  BugHotel Reservation System
//\
//\  This notice must remain untouched at all times.
//\
//\  Copyright (C) 2004-2007 Bug Software LLC
//\
//\  http://www.bug-hotel.org/  
//\  
//\//////////////////////////////////////////////////////////////////////////////////

function disable() {

	var i, w;
	d=document;
	for (w=0;w<d.forms.length;w++) {
		 for (i=0;i<d.forms[w].length;i++) {	
			if (d.forms[w][i].type=="button") {
				d.forms[w][i].disabled=true;
			};
			if (d.forms[w][i].type=="reset") {
				d.forms[w][i].disabled=true;
			};
			if (d.forms[w][i].type=="submit") {
				d.forms[w][i].disabled=true;
			};
		}
	}
}