﻿function art_poslite_click(id){
	var u=location.href;
	var t=document.title;
	var l = '';
	var w = 800; var h = 600;
	switch (id) {
		case 'fb': 
			l = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
			w = 626; h = 436;
		break;
		case 'g': 
			l = 'http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(u)+'&title='+encodeURIComponent(t);
			w = 826; h = 536;
		break;
		case 'myspc': 
			l = 'http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t)+'&c='+encodeURIComponent(t);
		break;
		case 'twit': 
			l = 'http://www.twitter.com/home?status='+u;
		break;
		}
	if (l) window.open(l, 'art_poslite_'+id, 'toolbar=0,status=0,width='+ w +',height='+h);
	return false;
}

function like(id,media){
	$('#photoLikeBox-'+id).load('/ajax/events.php?voteLikePhotoId='+id+'&media='+media);
}
function dislike(id,media){
	$('#photoLikeBox-'+id).load('/ajax/events.php?voteDisLikePhotoId='+id+'&media='+media);
}

