// JavaScript Document		
		
	check_searchbox_focus = function(box) {			
		if (box.value == 'Search'){
			box.value = '';
		}
	};
	
	check_searchbox_blur = function(box) {	
		if (box.value == '') {
			box.value = 'Search';
		}    
	};
		
	check_mailbox_focus = function(box) {			
		if (box.value == 'email address'){
			box.value = '';
		}
	};
	
	check_mailbox_blur = function(box) {	
		if (box.value == '') {
			box.value = 'email address';
		}    
	};
		
