function shareFacebook() {
	var curentURL = window.location.href;
	window.open("http://www.facebook.com/sharer.php?u="+curentURL+"&t="+curentURL, 'Facebook share Page', 'width=900,height=500,resizable=yes');
}
function shareTwitter() {
	window.open("http://twitter.com/share?url=" + window.location.href, 'Twitter share Page', 'width=900,height=300,resizable=yes');
	//$(".twitter_button").attr("href","http://twitter.com/share?url=" + window.location.href);
}
function shareLinkedIn() {
	var currentURL = window.location.href;
	window.open("http://www.linkedin.com/shareArticle?mini=true&url=" + currentURL + "&title="+ currentURL + "&summary="+currentURL+"&source="+currentURL, 'LinkedIn share Page', 'width=900,height=500,resizable=yes');
	//$(".linkedin_button").attr("href","http://www.linkedin.com/shareArticle?mini=true&url=" + currentURL + "&title="+ currentURL + "&summary="+currentURL+"&source="+currentURL);
}
function shareGooglePlus() {
	window.open("https://plus.google.com/share?url=" + window.location.href, 'Google+ share Page', 'width=900,height=500,resizable=yes');
	//$(".googlePlus_button").attr("href","https://plus.google.com/share?url=" + window.location.href);
}
function sendEmail() {
	var title = $("#contentDetailTitleId").html();
	var summary = $("#sapoDetailId").html();
	var currentURL = window.location.href;
	var newline = escape("\n");
	var body = summary + newline + currentURL;

	window.location="mailto:?subject=" + title + "&body=" + body;
}
