var txt='';
var x1; 

function spell1() {
	x1.value = '' + txt; mywindow.close(); 
} 

function spell(x) { 
	x1=x;
	txt=x.value;
	mywindow=open('/web/spell.asp','',''); 
	mywindow.location.href='/web/spell.asp?'+x.value; 
	if (mywindow.opener==null) mywindow.opener=self;
}

