function trim(text){
	text = text.replace(/^\s+/, "");
	text = text.replace(/\s+$/, "");
	text = text.replace(/\s+/g, " ");
	return text;
}

function deleteImage(strImage){
	if(confirm("Are you sure you want to delete the selected image?")){
		window.location.href='code/includes/images_delete.asp?id=' + strImage;
	}
}