
var remoteWin = null;
var remoteWin2 = null;

function popupWindow(newurl,winname,topcoord,leftcoord,vsize,hsize,scroll)
{
	if (!remoteWin2 || remoteWin2.closed) {
		remoteWin2 = window.open("",winname,'modal=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,top='+topcoord+',left='+leftcoord+',height='+vsize+',width='+hsize+',scrollbars='+scroll);
	} else {
		remoteWin2.focus()
	}
//   remoteWin = window.open("",winname,'modal=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,top='+topcoord+',left='+leftcoord+',height='+vsize+',width='+hsize+',scrollbars='+scroll);
//   remoteWin.rootWin = top;
   remoteWin2.location = newurl;
//   remoteWin2.refresh(true);
}


function popupGlossary(newurl,winname,topcoord,leftcoord,vsize,hsize,scroll,TheWord, TheLett)
{
	if (!remoteWin || remoteWin.closed) {
		remoteWin = window.open("",winname,'modal=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,top='+topcoord+',left='+leftcoord+',height='+vsize+',width='+hsize+',scrollbars='+scroll);
	} else {
		remoteWin.focus()
	}
//   remoteWin = window.open("",winname,'modal=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,top='+topcoord+',left='+leftcoord+',height='+vsize+',width='+hsize+',scrollbars='+scroll);
//   remoteWin.rootWin = top;

   if( ! TheLett ) {
      TheLett = TheWord.substr(0,1);
      remoteWin.location = newurl+"?"+TheWord;
   } else
      remoteWin.location = newurl+"?"+TheWord+"?"+TheLett;

   remoteWin.target_letter = TheLett;
   remoteWin.target_word = TheWord;
}

function showStatus(msg) {
   window.status=msg
   return true
}