function getProduct(theElement){
	ajaxEngine.registerRequest( 'getProduct', '/index.php/widget/AjaxShopWidget' );
	ajaxEngine.registerAjaxElement( 'shopReceiverElement' );
	
	$('lightimage').src = '/images/lightview/loading.gif';
	
	searchString = theElement.getAttribute('value');
	
	var xml;
	xml = buildAjaxMessage('<searchString>' + searchString + '</searchString>');
	ajaxEngine.sendRequestWithData( 'getProduct', xml );

}