function csItemsSearchPriceClicked() {
	searchSelect = window.document.getElementById("csItemsSearch_price");
	i = searchSelect.selectedIndex;
	var price = searchSelect.options[i].value;
	if (price) {
		location.href="/index.php?module=csItems&op=search&price=" + price;
	}
}



var handle;

function newWindow(url,width,height) {
	handle=window.open(url,'name','width=' + width + ',height=' + height +',resizable=yes,scrollbars=yes');
	if (window.focus) { 
		handle().focus;
	}
}

function newWindowPrint(url,width,height) {
	handle=window.open(url,'name','width=' + width + ',height=' + height +',resizable=yes,scrollbars=yes');
	if (window.focus) {
		handle.focus();
	}
	handle.print();
}