/***************************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 ***************************************/

$(function(){
	var winWidth = 770; //750+20
	var winHeight = 850;

	$('.popup').click(function(){
		var url = $(this).attr('href');
		// open window
		var w = window.open(
			url,
			"detailWin",
			"directories=0,location=0,menubar=0,scrollbars=1,"
			+"status=0,titlebar=0,toolbar=0,resizable=1,left=0,top=0,"
			+"width="+ winWidth +",height="+ winHeight
		);
		return false;
	});
});
