// JavaScript Document

function uploadimg(theform){
	//submit the form.
	theform.submit();
	//Loading message
	setStatus("Loading...","showimg");
}

//Function to determine when the process_upload.php file has finished executing.
function doneloading(theframe,thefile){
	var theloc = "showimg.php?thefile=" + thefile;
	theframe.processajax ("showimg",theloc);

}

function doneloadingitem(theframe,thefile,itemid){
	var theloc = "showimgitem.php?thefile=" + thefile;
	theloc = theloc + "&id="+itemid;
	theframe.processajax ("showimg",theloc);
}

function setStatus(theStatus,theObj){
	
	obj=document.getElementById(theObj);
	if(obj){
		obj.innerHTML = "<div class=\"bold\">"+theStatus+"</div>";	
	}
}
