function doSearch() {
	var oS = window.document.getElementById('search');
	window.document.location='/search.php?q='+oS.value;

}

function NewWindow(mypage,focus,myname,w,h,scroll)
{
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',noresizable'
win = window.open(mypage,myname,settings)
if(focus==1)
  {
   win.focus();
  }
}

