<!--//
function confirm_delete() {
	if(confirm("Are you sure you want to delete this record? Click 'OK' to delete, click 'Cancel' to do nothing.")) {
		return_value = true
	} else {
		return_value = false
	}
	
	return return_value
}

function changeData(formData) {
	document.forms[0].content_text.value = formData;
	return true;
}


function pop(link,thewidth,theheight){
	all_features = "menubar=no,scrollbars=yes,resizable=yes,top=0,left=20, width="+thewidth+", height="+theheight;
	window.open(link,'myWindow',all_features);
}

//-->