/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function likePhoto(pid) {
	var _url = '/ajax-vote-process.php';
	var _data = 'pid=' + pid;
	var vc = document.getElementById('voteContainer_'+pid);

	$.ajax({
		type: 'POST',
		url: _url,
		data: _data,
		success: function(msg) {
			if (msg.indexOf('status=success') != -1) {
				vc.innerHTML = 'Thank you for voting';
			}
			else {
				alert(msg);
			}
		}
	});
}


