//global schtuff

function linkLoc(strPageName) {
    //Redirects to new URL with querystring in tow
	var strLocURL;
	var strLocation = new String();
	var strLocation = location.href;
	var pairs = strLocation.split("?");
	if (pairs.length == 2) {
		strLocURL = strPageName + "?" + pairs[1];
		}
	else {
		strLocURL = strPageName;
		}
	location.href = strLocURL;
	return;
	}
		