/*------------------------------------------------------------
 * openwindow.js jQuery.js Version 1.1
 * 
 *------------------------------------------------------------
 * class名がfunc-blankのa要素を別ウィンドウで開きます。
 * class名がopen-columnのa要素を830px×600pxの別ウィンドウで開きます。
/*------------------------------------------------------------*/

$(function(){
	$("[class*='open-column']").click(function(){
		window.open(this.href, 'new', 'width=830, height=600, scrollbars=yes');
		return false;
	});
	$("a.func-blank").click(function(){
		window.open($(this).attr("href"), 'new');
		return false;
	});
});