function validateStr(str)
{
	if(str.length < 1)
	 return false;
	else 
	 return true;
};


function openWnd(url)
{
	w = window.open(url,'glossary','top=10,left=10,toolbar=0,scrollbars=1,resizable=0,width=780,height=500');
	w.focus();
};

function openWnd2(url)
{
	w = window.open(url,'','top=10,left=10,toolbar=0,scrollbars=1,resizable=0,width=200,height=200');
	w.focus();
};



