// JavaScript Document
var shareURL 	= escape(window.location.href);
var shareTitle  = escape('Strange Things children of Haiti movie');

function go_facebook_share(title, link){
	if(link.length == 0){
		window.open("http://www.facebook.com/sharer.php?t=" + shareTitle + "&u=" + shareURL, 'facebook', 'width=600,height=300');
	}
	else{
		window.open("http://www.facebook.com/sharer.php?t=" + title + "&u=" + link, 'facebook', 'width=600,height=300');
	}
}
 
function go_twitter_share(status){
	
	if(status.length == 0){
		status = shareTitle + ' ' + shareURL;
	}
	
	window.open("http://twitter.com/home?status=" + status, "twitter", "width=600,height=300");
}
