var Selected = ''
var clickondic = 0
var Second = 0
function getSel() {
	if (clickondic==0) {
		var txt = '';
		if (window.getSelection)
			{txt = window.getSelection();}
		else if (document.getSelection)
			{txt = document.getSelection();}
		else if (document.selection)
			{txt = document.selection.createRange().text;}
		else return;
		if (txt != '') {
			move_Whatis()
			txt=txt+' ';
			txt=txt.split(' ')[0];
			document.getElementById('sWord').innerHTML = txt
			document.getElementById('Whatis').style.display = ''
			document.getElementById('Dictionary').style.display = 'none'
		} else {	
			move_Dictionary()
			document.getElementById('sWord').innerHTML = ''
			document.getElementById('Whatis').style.display = 'none'
		}
	} else {
		clickondic=0
	}
}
function iframe_onLoad()
{
	if (Second == 1)
	{
		document.getElementById('Whatis').style.display = 'none'
		document.getElementById('Dictionary').style.display = ''
	}
	else
		Second = 1
}

function move_Whatis()
{
	document.getElementById('Whatis').style.top = document.body.scrollTop
	document.getElementById('Whatis').style.left = document.body.scrollWidth - 333
	setTimeout('move_Whatis()', 1)
}

function move_Dictionary()
{
	document.getElementById('Dictionary').style.top = document.body.scrollTop
	document.getElementById('Dictionary').style.left = document.body.scrollWidth - 333
	setTimeout('move_Dictionary();', 1)
}

if(window.addEventListener){
	window.addEventListener('mouseup', getSel, false)
} else {
	document.attachEvent('onmouseup', getSel);
}

document.write('<div id="Whatis" align="center" style="padding-top:1px; display: none; position: absolute; width: 333px; height: 20px; z-index: 1; left: 1px; top: 1px; background-color:#CC0000; font-family:Tahoma; color:#FFFFFF; font-size:10pt; font-weight:bold;cursor: hand" onmouseup="clickondic=1;document.getElementById(\'Dictionary\').style.display=\'none\';frames.frmDictionary.location=\'http://www.openlearningcenter.com/functions/dictionary.asp?word=\'+document.getElementById(\'sWord\').innerHTML">')
document.write('	What is the meaning of <span id="sWord"></span>?')
document.write('</div>')
document.write('<div id="Dictionary" align="center" style="display: none; position: absolute; width: 333px; height: 120px; z-index: 1; left: 343px; top: 1px; background-color:#000080; font-family:Tahoma; color:#FFFFFF; font-size:10pt; font-weight:bold;">')
document.write('		<span onmousedown="document.getElementById(\'Dictionary\').style.display=\'none\'" style="text-decoration: underline; cursor: hand; font-weight:700">Close</span><br>')
document.write('	<iframe name="frmDictionary" width="323" height="96" border="0" frameborder="0" onload="iframe_onLoad()"></iframe>')
document.write('</div>')