function PageLoadFunction() {
   window.moveTo(0,0); 
   window.resizeTo(screen.width,screen.height);    
}



function DoSearch() {  
  var term = document.getElementById('term').value;   
  window.open('quick_search_pop.php?term='+term, 'QuickSearch', 'width=340,height=300,scrollbars = no,resizable');  
  return false;  
}

function CloseWin() {
   window.close();  
}

function DoSearchMain(term) {
   window.opener.location = 'quick_search.php?term='+term;
   CloseWin();
}

function NewWindow(anc) {
	window.open(anc.href);
	return false;					
}

function Popup(anc,width,height) {  
  window.open(anc, 'Information', 'width=' + width + ',height=' + height + ',scrollbars = yes,resizable = no');  
  return false;  
}

function AuxillioClick() {
   user_input = confirm("Please note:\n\nAuxillio Solutions develop for Find A Parent Or Child and host the website. They are not involved with the day to day running of this website and are unable to answer any non-technical questions about this website.\n\nIf you wish to contact Find A Parent Or Child please follow the contact link on this website.\n\nClick OK to continue to open the Auxillio Solutions website.");
   
   if (user_input == true) {   
      window.open('http://www.auxillio.co.uk/');
   }
   return false;  
}

function ChangeSite(sel) {
   window.location = sel.value;  
}