function scrapGet(cDiv, cHtml){
	if ((cHtml != undefined) && (cHtml != '')){		
		pars = ''		
		
		var myAjaxR1 = new Ajax.Request(			
			cHtml, 			
			{
				method: 'get', 
	 			parameters: pars,
	 			onSuccess: function(r){
	 				scrapGotten(r, cDiv);
	 			},	 				 		
	 			onFailure: scrapErr
			}
		);				
	}
}

function scrapGotten(r, cDiv){
	$(cDiv).innerHTML = r.responseText;
	//alert ('got scrap');
}

function scrapErr(r){
	alert ('Error loading content.');
}	