// JavaScript Document
$(document).ready(function() {
	
	$.swapImage(".swapImage");

	$(".clearinput").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	
});


function confirm_gotourl(URL, error_message)
{
					input_box=confirm(error_message);
							if (input_box==true)	
							{ 
							// Output when OK is clicked
									location=URL; 
							}
						
			
}

function returnnull() {
	return null;
}
