//Hide status bar message

var statusmsg=""

function hidestatus(){
window.status=statusmsg
return true
}



function goTo (arg2,page,htmlpage) {
/* This function is called from the navigation menu
   to jump to the designated URL. Empty values
   are ignored and "--" indicates a menu seperator    */

	if (page != "" ) {
	
     if (arg2 == "ukdomain") lastbit = '.co.uk';
     if (arg2 == "usdomain") lastbit = '.com';	

     if (htmlpage != "" ) lastbit = lastbit+htmlpage;

			

      url =  'http://www.'+page+lastbit;   

      myWind = window.open(url, "miniWindow", "width=1250,height=730,toolbar=1,menubar=1,location=1, status=1, scrollbars=1, resizable=1");
		
      
	}
}
