function picWin(target_img,seq){
	if (seq==1){
		var imgFile = target_img.src;
	}
	else if (seq==2)
	{
		var imgFile = "http://"+"www.koreanculture.jp"+"/img/matsuri/2011/"+target_img;
	}
	else if(seq==3)
	{
		var imgFile = "http://"+"www.koreanculture.jp"+"/img/sub/"+target_img;
	}
	else if(seq==4)
	{
		var imgFile = "http://"+"www.koreanculture.jp"+"/img/news/"+target_img;
	}
	else
	{
		var imgFile = "http://"+"www.koreanculture.jp"+"/img/"+target_img;
	}

	var img_url = "picimage_view.php?bimg="+imgFile;

	img_url=encodeURI(img_url);

    var newImg = new Image();
    newImg.src = imgFile;
    var imgw = newImg.width;
    var imgh = newImg.height;
    var scrw, scrh;

    if (self.screen) {
		scrw = screen.width;
		scrh = screen.height;
	}else {
		scrw = 640;
		scrh = 720;
	}

	if (imgw < 800) {
		imgw = 800;
		imgh = 720;
	}

	if (imgw > scrw || imgh > scrh){
		window.open(img_url,"picWin","width="+scrw-1+",height="+scrh-1+",top=100,left=100,scrollbars=1,resizable=1");

	}else if (imgw == 1 ){
		window.open(img_url,"picWin","width=400,height=400,top=100,left=100,scrollbars=1,resizable=1");

	}else{
		window.open(img_url,"picWin","top=100,left=100,width="+imgw+",height="+imgh+",scrollbars=1,resizable=1");
	}
}
