var prepend = '';

//////////////////////////////////////////////////////////////////////////////	
//updateDiv
//
//Desc: Calls a special version of updateContentArea just for use with
//run.php
//////////////////////////////////////////////////////////////////////////////
function updateDiv(divName,funct_name,param1,param2,param3,param4){
	
	var vars = "function_name="+funct_name+"&param[1]="+param1+"&param[2]="+param2+"&param[3]="+param3+"&param[4]="+param4;	
	updateContentArea(divName,vars, prepend+'php/run.php');
	
}//end function


var next_item = 9;
function addNewItem(argh1){
	
	//Though it seems unlimited, there are only actually 21 total forms that can be added.
	if(next_item==21){
		alert("Maximum number of items reached");
		return;
	}//end if

	var target = "#set_"+next_item;
	
	$(target).fadeIn();
		
	next_item++;
}//end function
