function bigSister(tInput)
{
	var rc
	var URLlocation = ""
	rc = confirm('Are you sure you want to delete this record?')
	if(rc == true){
		URLlocation = tInput
	}else{
		URLlocation = "#"	// Do not give any URL - stay at current page - DO NOT DELETE!
	}
	return URLlocation		// ...return the URL I want to navigate to 
}

