var cp = new cpaint();
cp.set_transfer_mode('get');
cp.set_response_type('object');
cp.set_debug(0);

var interactor = 'website.ajax.php';

function submitTestMarking(storeID, contactName, contactAddress, contactZipCode, contactPhone, contactEmail, versionID, languageCode) {
	cp.call(interactor, 'submitTestMarking', submitTestMarkingResponse,
			storeID, 
			contactName, 
			contactAddress, 
			contactZipCode, 
			contactPhone, 
			contactEmail, 
			versionID,
			languageCode
	);
}

function submitTestMarkingResponse(result) {
	//alert('Tudo OK');
}

function submitAnalysis(contactName, contactAddress, contactZipCode, contactEmail, contactPhone, contactInfo, areaID, languageCode) {
	cp.call(interactor, 'submitAnalysis', submitAnalysisResponse,
			contactName, 
			contactAddress, 
			contactZipCode, 
			contactEmail, 
			contactPhone, 
			contactInfo, 
			areaID, 
			languageCode
	);
}

function submitAnalysisResponse(result) {
	//alert('Tudo OK');
}

