/******************
 This file is part of m-bread Title Cloaking
 (http://m-bread.com/resources/tc) and is licensed under the Creative
 Commons Attribution-Share Alike 2.0 UK: England & Wales License
 (http://creativecommons.org/licenses/by-sa/2.0/uk/) by Martin Pain
 (http://m-bread.com/). This means you are free to use, distribute and
 modify the calendar, as long as you distribute any work you use it in
 under a similar licence.
******************/

function changePage(){
   var site = document.getElementById('addressBox');
   if(site.value.indexOf('http')!=0&&site.value.indexOf('file')!=0&&site.value.indexOf('ftp')!=0)
   {site.value = 'http://' + site.value;}//document.write(site.value);}
   parent.changePage(site.value);
   document.getElementById('closeLink').href=site.value;
}//EoFn changePage