function fnTotalSearch()
{
if ( ( document.TotalSearch.SearchRadio[0].checked == false )
    && ( document.TotalSearch.SearchRadio[1].checked == false ) )
    {
        alert ( "Please choose" );
    }

if (  document.TotalSearch.SearchRadio[0].checked == true )
    {
	document.TotalSearch.action = '/html/public/search/CatalogueSearch.asp?search=' + document.TotalSearch.SearchTerm.value;
	document.TotalSearch.submit();
   }

if (  document.TotalSearch.SearchRadio[1].checked == true )
    {
		document.TotalSearch.action = '/html/public/search/SiteSearch.asp?search=' + document.TotalSearch.SearchTerm.value;
		document.TotalSearch.submit();
	 }
}



function popUp() {
props=window.open('http://www.myvirginvieathome.co.uk/virgin/locator/index.jsp', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=600, height=500');
}