function launch(page, width, height) { 
	width = parseInt(width) + 19;
	height = parseInt(height) + 8;
	setTimeout(function(){
	var openWin = this.open(page, "hubstation", "toolbar=yes, menubar=no ,location=no, scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
	},1);
}