



function test() {
alert("ss");
}


var Popup = {
	open: function(html, w, h, extra) {
		var sw = screen.width;
		var sh = screen.height;
		var x = (sw - w) / 2;
		var y = (sh - h) / 2;
		window.open(html, "popup", "width=" + w + ",height=" + h + 
			",left=" + x + ",top=" + y + "," + extra);
	},
	videoOpen: function(f) {
		Popup.open("/js/../video.jsp?f=" + f, 450, 455);
	}
}