
function insipio_off()
{
	//top.document.location = top.readitbody.insipio_orgurl;
	top.document.location = "http://www.gagnesjo.se";
}

function insipio_getReaditText()
{
	if(document.selection)
	{
		if(document.selection.type != "None")
		{
			document.readText.stext.value = document.selection.createRange().text;
		}
	}
	else if(document.getSelection)
	{
		document.readText.stext.value = new String(document.getSelection());
	}
	else if(window.getSelection)
	{
		document.readText.stext.value = new String(window.getSelection());
	}
	else
	{
		document.readText.stext.value = "";
	}
}


function insipio_deleteSelection()
{
	document.readText.stext.value = "";
}

function insipio_readIT()
{
	if (document.readText.stext.value.length == 0)
	{
				alert("Du kan få texten uppläst genom att markera den med musen och sedan klicka på lyssna");
			return;
	}

		document.readText.submit();
}

