function showVideo(i,r) {
		new Ajax.Request(apiPath+'api-showVideo.php', {
			method: 'POST',
			parameters : { make:'show', cid:i, rand:r },
			onSuccess: function(t) {
				if(t.responseText !== "") {
					Modalbox.show(t.responseText,{title: "Video", width:"725", height:"565"});
				}
			}
		});
}
