$(document).ready(function() {
	// Reset value of the input on focus
	// alert ($("input").type);
	//alert($("input").type);
	// if ($("") == "text") {
	//	$("input").focus( function() { this.value=""; } );
	// }
 });

function setBox(name, val, action) {
	if (eval(name).value == val && action == 'focus') {
		eval(name).value = '';
	} else if (eval(name).value == '') {
		eval(name).value = val;
	}
}

function MM_openBrWindow(theURL,winName,features) {
  	window.open(theURL,winName,features);
	}