	function GetMetaValue(meta_name)
	{
			var my_arr=document.getElementsByTagName("META");
			for (var counter=0; counter<my_arr.length; counter++)
			{
				if (my_arr[counter].name.toLowerCase() == meta_name.toLowerCase())
				{
				return my_arr[counter].content;
				}
			}
			return "N/A";
	}
	function fbs_click() 
	{
			u=document.domain;
			t=document.title;
			var targetUrl = 'http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t);
			window.open(targetUrl,'facebook', 'toolbar=0, status=0, width=626, height=436');
			return false;
	}
	function mys_click()
	{
			u=document.domain;
			t=document.title;
			d=GetMetaValue('description')
			var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(t) + '&c=' + encodeURIComponent(d) + '&u=' + encodeURIComponent(u) + '&l=' + 1;
			window.open(targetUrl,'myspace', 'toolbar=0, status=0, width=626, height=436');
			return false;
	}
	function linked_click() 
	{
			u=document.domain;
			t=document.title;
			d=GetMetaValue('description')
			var targetUrl = 'http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(u) + '&title=' + encodeURIComponent(t) + '&summary=' + encodeURIComponent(d) + '&source=' + encodeURIComponent(u);
			window.open(targetUrl,'linkedin', 'toolbar=0, status=0, width=520, height=570');
			return false;
	}
	

