function insertImage(path, width, height) {
	var text = prompt("Alt and title text:");
	var result = "<p class=\"login\"><img src=\""+path+"\" width=\""+width+"\" height=\""+height+"\" alt=\""+text+"\" title=\""+text+"\"></p>";
	prompt("Code for this image:",result);	
}

function showImage(path, width, height) {
	window.open(path, path, "width="+width+",height="+height+",toolbar=no,status=no,scrollbars=no,resizable=yes,menubar=no");
}

function findImages() {
	var text = document.getElementById("searchText").value;
	document.getElementById("results").innerHTML = "<li>...</li>";
	postReturnContent("text="+text, "imagefinder.php", "results");
}

function insertFlickrImage(url, linkToSite) {
	var text = prompt("Alt and title text:");
	var result = "<p class=\"login\"><a href=\""+linkToSite+"\"><img src=\""+url+"\" alt=\""+text+"\" title=\""+text+"\"></a></p>";
	prompt("Code for this image:",result);	
}

function browseFlickr() {
	var browser = window.open("viewflickr.php", "Flickr", "width=250,height=700,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
	browser.moveTo(500,0);
}

function confirmDelete() {
	if( confirm("Are you REALLY sure you want to delete this entry?")) {
		document.getElementById("doDelete").value = "true";
		document.getElementById("editForm").submit();
	}
}