function goPage(params,type,target)
{var url='/index.php?';var pars='type='+type+'&req='+params;if(type=='js')
{window.open('/index.php?req='+params,'_self');}
else if(type=='ajax')
{$("#ajax-main").load(url+pars);}
else if(type=='post')
{alert('no post');}
else
{alert('action not implemented ');}}
function SearchDictionary()
{var search=(encodeURIComponent($("#search").val()));if(!search)
{alert('Please enter a search term!');}
else
{var url='/index.php';var pars='?req=dictionary&action=search&type=ajax&search='+search;$("#glossary").load(url+pars);}};
