// JavaScript Document		
		
	check_searchbox_focus = function(box) {			
		if (box.value == 'Keyword or Destination'){
			box.value = '';
		}
	};
	
	check_searchbox_blur = function(box) {	
		if (box.value == '') {
			box.value = 'Keyword or Destination';
		}    
	};
		
	check_mailbox_focus = function(box) {			
		if (box.value == 'enter your e-mail address'){
			box.value = '';
		}
	};
	
	check_mailbox_blur = function(box) {	
		if (box.value == '') {
			box.value = 'enter your e-mail address';
		}    
	};
		
