$(document).ready(
									function(){
										$('#confirm').Highlight(1500, 'gold');
  									$('.input').focus(
																						function() {
																							$(this).css('background','white');
                     												}
																						);
  									$('.input').blur(
																						function() {
																							$(this).css('background','#FFF5BF');
                     												}
																						);

									}
									);

function confirmDelete(gotopath) { 
  var c = confirm('Are you sure you want to DELETE this?'); 
  if (c) document.location= gotopath; 
} 
