// Copyright 2003-2004, Rod Mancisidor.
// All rights reserved.
// Use of this software prohibited except by written permission from the author.

function raiseInfoWindow() {
	// Raise the infoWindow used by the amazon catalog editor
	var infoWin = window.open('',
							  'infoWindow',
							  'height=580,width=800,' +
							  'left=215,screenX=215,' +
							  'top=0,screenY=0,' +
							  'location=yes,menubar=yes,resizable=yes,' +
							  'scrollbars=yes,status=yes,toolbar=yes');
	infoWin.focus();
	return true;
}

function changeAmzStarsNovice(self) {
	_handleNoOpinionNoviceRadio(self, 'AmzStars');
	_setField('AmzStarsExpert', self.value);
	_setField('AmzStarsExpert_ch', self.value);
}
