<!-- 
// (c) 1999-2004 Live365.com
// Imported into *main_head.html to build the pageLocation string for the UserBox

pageLocation = "/cgi-bin/directory.cgi?genre=" + gGenre;
if (gSearchFields != "") 
	pageLocation += "&searchfields=" + gSearchFields;
if (gSearchGenre != "")
    pageLocation += "&searchgenre=" + gSearchGenre;	
if (gSearchDesc != "") 
	pageLocation += "&searchdesc=" + gSearchDesc;
if (gMaxSpeed != "") 
	pageLocation += "&maxspeed=" + gMaxSpeed;
if (gOrder && gOrder != "N:I:T:G:P:H:C:L:B:D:R")
	pageLocation += "&order=" + gOrder;	
if (gSort && gSort != "L:D")
	pageLocation += "&sort=" + gSort;	
if (gSite && gSite != "..") 
	pageLocation += "&site=" + gSite;
if (gSource != "") 
	pageLocation += "&source=" + gSource;	
if (gRows && gRows != "25") 
	pageLocation += "&rows=" + gRows;
if (gText != "") 
	pageLocation += "&text=" + gText;
if (gOnly != "") 
	pageLocation += "&only=" + gOnly;
if (gLegend && gLegend != "M:L:R:A") 
	pageLocation += "&legend=" + gLegend;	
if (gMember != "") 
	pageLocation += "&member=" + gMember;	

// -->
