/**
 * @alias audiocity
 * @author ArwebSys <sistems@arweb.com>
 * @since 2008
 */

var audiocity = {
	
	Master: {
		
		rate: function (product) {
			product = encodeURIComponent(product);
			var frame = new gui.containers.Frame("http://www.audiocitycr.com/rates/rate.php?id="+product, {height: 220});
			frame.show();
		}
		
	},
	
	Rate: {
		
		init: function () {
			var form = new net.Form("fRate");
			form.onSubmitException(function () {
				return gui.containers.OptionPane.showMessageDialog(1);
			});
		}
		
	}
	
};
