﻿function JumpToPage(intPageNumber) {
    RemoveQuerystring("");
    //RemoveQuerystring("Page");
    setQuerystring("Page", intPageNumber);
    if (location.search != '') {
	location = location.href.replace(location.search, buildQuerystring());
    } else {
        location = location.href + buildQuerystring();	
    }
}

function openPopup(strURL, strWindowTitle, intWidth, intHeight) {
	var windowPopup;
	var strSettings;
	
	windowPopup = null;
	strSettings = 'width=' + intWidth + ',height=' + intHeight + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,dependent=no';
	windowPopup = window.open(strURL, strWindowTitle, strSettings);
	windowPopup.focus();
}