/**
 * @author Winnie Wing Sai Ho
 */

var Popup = {
	open: function(options) {
		this.options = {
			url: '#',
			width: 360,
			height: 615
		}
		Object.extend(this.options, options || {});
		window.open(this.options.url, '', 'width='+this.options.width+',height='+this.options.height);
	}
}
