// JavaScript Document

//For jquery.js
//
//$(function(){
//	
//	//popup
//	//classの値にwindowを持つリンクを小窓で表示させる
//	var = winClass;
//	winClass[0] = "w0";
//	winClass[1] = "w1";
//	winClass[2] = "w2";
//
//	$('a.window').each(function(){
//		this.param = $(this).attr("href");
//		$(this).attr("href","");
//		this.param2 = $(this).attr("class");
//		this.param2 = this.param2.split(' ');
//		$(this).attr("class","");
//	}).click(function(){
//		if(this.param2[1]=="w1"){
//		window.open(this.param,this.param2[1], "menubar=1,location=1,resizable=1,status=1,width=200,height=200").focus();
//		} else if(this.param2[1]=="w2"){
//		window.open(this.param,this.param2[1], "menubar=1,location=1,resizable=1,status=1,width=200,height=400").focus();
//		}
//		return false;
//	});
//	//end popup
//
//});

