function popUp(strURL,strType,strHeight,strWidth) {
	centerX = (screen.width - strWidth )/2;
	centerY = (screen.height - strHeight)/2;	
	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth+", left="+centerX+", top="+centerY;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth+", left="+centerX+", top="+centerY;
	window.open(strURL, 'newWin', strOptions);
}


function changeDataLimit(value, pageName, id, brand) {
	window.location.href = pageName+"?LimitValue="+value+"&id="+id+"&Brand="+brand;
}

function changeBrand(value, pageName, limit) {
	window.location.href = pageName+"?LimitValue="+limit+"&Brand="+value;
}

function changeMonth(pageName, month, year) {
	window.location.href = pageName+"?month="+month+"&year="+year;
}
