function ChangeProdListParameters(pagesize,offset,sort)
{
	var thisForm = document.form1p

	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.sort.value = sort
	thisForm.submit()
}
function ChangeProdListParameters2(pagesize,offset,sort)
{
	var thisForm = document.form1p
	

	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.sort.value = sort
	thisForm.submit()
}

function ChangeProdListParameters3(pagesize,offset,thisObj)
{
	var thisForm = document.form1p
	
	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.sort.value = thisObj.options[thisObj.selectedIndex].value
	thisForm.submit()
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



