function pasteQ()
{
	txt='';
	if(document.getSelection)
	{
		txt=document.getSelection()
	}
	else if(document.selection)
	{
		txt=document.selection.createRange().text
	}
	copyQ(txt);
}

function copyQ(txt)
{
	if(document.info.contents)
		document.info.contents.value+="<i>"+txt+"</i>\n";
	return true;
}