function abreItem(pageUrl) {
	window.open(pageUrl,'produto','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=550,height=360,top= ' + ((screen.Height)/2 - 180) + ',left= ' + ((screen.Width)/2 - 275));
}
function abreSerie(pageUrl) {
	window.open(pageUrl,'serie','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,width=280,height=310,top= ' + ((screen.Height)/2 - 155) + ',left= ' + ((screen.Width)/2 - 140));
}

function CheckAll(form) {
	for (var i=0;i<document[form].elements.length;i++) {
		var e = document[form].elements[i];
		if (e.name != 'allbox')
			e.checked = document[form].allbox.checked;
	}
 }
 
function envia(form) {
	document[form].submit();
}