function gothere (url){
	location=url;
}

var win= null;
function NewWindow(mypage,w,h){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var settings  ='height='+h+',';
      settings +='width='+w+',';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
	  settings +='directories=0,location=0,menubar=0,scrollbars=0,noresize,status=0,toolbar=0';
  win=window.open(mypage,'popup',settings);
}