Bcdw.Opener = {
	init: function() {
		top.window.moveTo(0,0);
		if (document.all) {
			top.window.resizeTo(screen.availWidth,screen.availHeight);
		} else if (document.layers||document.getElementById) {
			if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth) {
				top.window.outerHeight = screen.availHeight;
				top.window.outerWidth = screen.availWidth;
			}
		}
		self.resizeTo(screen.availWidth,screen.availHeight-1);
		self.moveTo(0,1);
	},

	launch: function(url, width, height) {
		var l = parseInt((screen.availWidth/2) - (parseInt(width)/2));
	    var t = parseInt((screen.availHeight/2) - (parseInt(height)/2));
		window.open (url,"videoWindow","location=no,toolbar=no,menubar=no,directories=no,resizable=no,status=no,scrollbars=no,width=" + width + ",height=" + height + ",left=" + l + ",top=" + t + ",screenX=" + l + ",screenY=" + t);
	}
};
