function tableload(location,pos)
{
	if(pos=="wtable"){
		location=location+"/admin/save.php";

		var req = new Request.HTML({
		method: 'get',
		url: location,
		onComplete: function(responseTree, responseElements, responseHTML, responseJavaScript) {
		
		$(pos).innerHTML = responseHTML;
		}
		}).send();

	}
	
}