// Set Focus
function fokus(){
	try
	{
		document.frmRadio.title.focus();
	}
	catch(err)
	{}
}

// Entry Length
function validateStory()
{
	//Title
	if(document.frmRadio.title.value.length < 1 || document.frmRadio.title.value.length > 100)
	{
		alert("Your Story's Title can neither be blank nor exceed 100 characters.\nIt is currently "+document.frmRadio.myArticle.value.length+" character(s).\nPlease edit the Title and try again.");
		document.frmRadio.title.focus();
		return(false);
	}
	//Body
	if(document.frmRadio.myArticle.value.length < 1 || document.frmRadio.myArticle.value.length > 15000)
	{
		alert("Stories can neither be blank nor exceed 15000 characters.\nYour Story is "+document.frmRadio.myArticle.value.length+" character(s).\nPlease edit your Story and try again.");
		document.frmRadio.myArticle.focus();
		return(false);
	}
	document.frmRadio.send.value = "Publishing...";
	document.frmRadio.send.disabled = true;
	document.frmRadio.submit();
}

// Google Tracker
//var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write("\<script src='http://www.google-analytics.com/ga.js' type='text/javascript'>\<\/script>" );

if (typeof(_gat) == "object") { 
	var pageTracker = _gat._getTracker("UA-3216877-1");
	pageTracker._initData();
	pageTracker._trackPageview();
} 
