/*
function dotheajax(phpfile, obj, getpost, str, response){

	$.ajax({	
    	type: getpost,
    	url: phpfile,
    	data: str,
    	dataType: "html",
    	success: function(data){
			 if(response == "value"){
			 	$("#" + obj).val(data);
			 } else if(response != "none"){
			 	$("#" + obj).html(data);
			 }
	    }
	});
	
}
*/

/*
function close_object(object_id){
	$("#" + object_id).hide();
    
	//theobject = document.getElementById(object_id);
    //theobject.style.display = "none";
    //theobject.style.height = "0px";
    //theobject.style.width = "0px";
    //theobject.style.padding = "0px";
    //theobject.style.margin = "0px";
	
}
*/

/*
function setvalue(thevalue, sourceid, destid){
	document.getElementById(destid).value = thevalue;
	close_object(sourceid);
}
*/

