// open the popup window centered on the screen
function openwindow(theURL) 
{
	
	var w = (screen.width - 750)/2;
	var h = (screen.height - 430)/2 - 30;
	features = 'location=no,menubar=no,status=no,toolbar=no,resizable=no,scrollbars=no,width=750,height=430,top='+h+',left='+w;
	exitstat = window.open(theURL,'fullsize',features);
}

function wordcount(w,x){
	var y=w.value;
	var r = 0;
	a=y.replace('\n',' ');
	a=a.split(' ');
	for (z=0; z<a.length; z++) {if (a[z].length > 0) r++;}
		x.value=r;
}