var t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));
if(t!=''){
		dhtmlLoadScript('http://www.jawaadmahmood.com/mvocab.php?word='+t);
}
else{
		alert('empty string selected.');
}

function openInNewWindow(newurl) {
	// Change '_blank' to something like 'newWindow' to load all links in the same new window
	var newWindow = window.open(newurl, '_blank');
	newWindow.focus();
	return false;
 }

function show_explanation(){
	document.getElementById('jbmx1z_explanation').style.display='block'
}
function hide_explanation(){
	childObj = document.getElementById('jbmx1z_explanation'); 
  document.body.removeChild(childObj); 
}


function showdata(data){
	var outputdata = document.createElement('div');
	outputdata.id = 'jbmx1z_explanation';
	outputdata.setAttribute('align','center');
	outputdata.style.zIndex = '999';
	outputdata.style.position = 'absolute';
	outputdata.style.background = 'white';
	outputdata.style.top = '40px';
	outputdata.style.left = '40px';
	outputdata.style.width = '250px';
	outputdata.style.height = '250px';
	outputdata.style.padding = '10px';
	outputdata.style.border = '2px solid black';
	outputdata.style.display = 'block';
	outputdata.innerHTML = '<p>' + data[0][0] + ' ' + data[0][1] + '</p><p>' + data[0][2] + '</p><a href=\'javascript:hide_explanation();\'>Close</a>';
	document.body.appendChild(outputdata);
	//document.getElementById('jbmx1z_explanation').style.display='block'
}

function dhtmlLoadScript(url)
{
   var e = document.createElement('script');
   e.src = url;
   e.type='text/javascript';
   document.getElementsByTagName('head')[0].appendChild(e); 
}