﻿function share( type, shareLink, title){
	var shareUrl	= encodeURI(shareLink);
	var title		= encodeURI(title);
	var time		= new Date().getTime();
	
	switch(type) {
		case 'twitter':
				var url		= "http://twitter.com/share?url="+shareUrl;
				var width	= "800";
				var height	= "400";
			break;
		case 'facebook':
				var url		= "http://www.facebook.com/sharer.php?u="+shareUrl+"&timestamp="+time;
				var width	= "800";
				var height	= "400";
			break;
		case 'linkedin':
				var url 	= "http://www.linkedin.com/shareArticle?mini=true&url="+shareUrl+"&title="+title+"&source=http://www.strauzz.nl"+"&timestamp="+time;
				var width	= "800";
				var height	= "400";
			break;
	}
	
	popupLinkedIn = window.open(url, 'share', 'width='+ width +',height='+ height +',status=no,location=no,menubar=no,directories=no,toolbar=no,resizable=no,scrollbars=no');
	popupLinkedIn.focus();
}


