function clearInputs() {		    if (!document.getElementById || !document.createTextNode) return;		    var inpt;		 		// name		inpt = document.getElementById('name');				 		if ( inpt )		{		inpt.onfocus = function() { 			if ( this.value == 'name'){			this.value = ''; 			}		}		  		inpt.onblur = function() {			if (this.value == '') this.value = 'name';			}		}
		 
		// email		inpt = document.getElementById('emailssssss');				 		if ( inpt )		{			inpt.onfocus = function() { 			if ( this.value == 'email'){		   this.value = ''; 		  }		 }		  		inpt.onblur = function() {			if (this.value == '') this.value = 'e-mail';			}		}
		
		// website		inpt = document.getElementById('website');				 		if ( inpt )		{			inpt.onfocus = function() { 			if ( this.value == 'website'){		   this.value = ''; 		  }		 }		  		inpt.onblur = function() {			if (this.value == '') this.value = 'website';			}		}
		
		// subject		inpt = document.getElementById('subject');				 		if ( inpt )		{			inpt.onfocus = function() { 			if ( this.value == 'subject'){		   this.value = ''; 		  }		 }		  		inpt.onblur = function() {			if (this.value == '') this.value = 'subject';			}		}
		
		// text		inpt = document.getElementById('message');				 		if ( inpt )		{			inpt.onfocus = function() { 			if ( this.value == 'message'){		   this.value = ''; 		  }		 }		  		inpt.onblur = function() {			if (this.value == '') this.value = 'message';			}		}	}