/*	txtit2me hotlink library
	Usage		<a href="javascript: txtit2me('Your message here')>Send me SMS</a> or
				<a href="#" onclick="txtit2me('Your message here'); return false;">Send me SMS</a>
	Revenue share partners should also include their SupplierID and, where applicable AgreementID
	Supporters of share partners should also include the SupplierID, AgreementID and their own ID

*/
var	BASEURL =	'http://www.txtit2me.com.au/web/cgi-bin/sendtxt.cgi';

function txtit2me(xi_Message, xi_Supplier_ID, xi_Agreement_ID, xi_Supporter_ID, xi_SameWindow)
{
	if(!xi_Agreement_ID) 	xi_Agreement_ID = xi_Supplier_ID

	var	link =	BASEURL + '?' +
				(xi_Supplier_ID ? 'SupplierID=' + xi_Supplier_ID + '&': '') + 
				(xi_Agreement_ID ? 'AgreementID=' + xi_Agreement_ID + '&' : '') + 
				(xi_Supporter_ID ? 'SupporterID=' + xi_Supporter_ID + '&' : '') +
				'Message=' + (xi_Message ? escape(xi_Message) : '');

	if(xi_SameWindow)	window.location = link;
	else				window.open(link);
}

