// JavaScript Document

// class="w_popup"
function popup_w() {
	if (!document.getElementsByTagName) {
		return false;
	}
	$('a.w_popup').click(function() {
			window.open(this.href,"new","width=460,height=450,resizable=yes,scrollbars=no");
			return false;
		}
	);
}
window.onload = popup_w;

