function twitterLink(VarText)
{
	var VarHash = "";

	if (VarHash != '')
	{
		/* Use Hash */
		href = 'http://twitter.com/home?status=' + encodeURIComponent(VarText) + " "
		 + encodeURIComponent(VarHash) + " " + location.href;
	}
	else
	{
		href = 'http://twitter.com/home?status=' + encodeURIComponent(VarText) + " "
		 + location.href;
	}

	window.open(href,'_advtweet');

	return false;
}

