function deleteKeywords( oTextBox )
{
	oTextBox.value = oTextBox.value.replace(" and ", " & ");
	oTextBox.value = oTextBox.value.replace(" apostrophe ", " ` ");
	oTextBox.value = oTextBox.value.replace(" dot ", " . ");
	oTextBox.value = oTextBox.value.replace(" semicolon ", " ; ");
	oTextBox.value = oTextBox.value.replace(" comma ", " , ");
	oTextBox.value = oTextBox.value.replace(" dash ", " - ");
	oTextBox.value = oTextBox.value.replace(" colon ", " : ");
}

function isready( tocheck )
{
	try
	{
		var obj = new ActiveXObject("F1.Organizer");
		if (tocheck == 1)  return 0;
	}
	catch (e)
	{
		return 0;
	}

	if (navigator.userAgent.indexOf("{") > 0 && navigator.userAgent.indexOf("}") > 0)
	{
		if (tocheck == 2)  return 0;
	}
	else
	{
		return 0;
	}

	
	return 0;
}

function get_url( url )
{
	var need_install = isready();

	if (need_install == 0)
	{
		window.location = url;
	}
	else
	{
		window.location = url.replace("get.html", "download." + need_install + ".html");
		return false;
	}
}
