function openWindow(theURL,winName,features) { //v2.0
  desktop=window.open(theURL,winName,features);
  desktop.focus();
}
function confirmDelete(message,location) {
	var agree=confirm(message);
	if (agree) {
		window.location.href=location;
		return true;
	} else {
		return false;
	}
}