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

