// JavaScript Document

function delConfirm(){
	if(window.confirm("本当に削除しますか？")){
		return true;
	}else{
		return false;
	}
}

function popMiniWindow(Aurl,Aname){
		Awidth		= 100;
		Aheight		= 100;
		Atoolbar	= false;
		Alocation	= false;
		Astatus		= false;
		Ascroll		= false;
		Amenu		= false;
		Aresize		= false;
		SWindow(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize);
}

function SWindow(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize)
{       Astr = "width=" + Awidth;
        Astr+= ",height=" + Aheight;
        if(Atoolbar)Astr+= ",toolbar";
        if(Alocation)Astr+= ",location";
        if(Astatus)Astr+= ",status";
        if(Ascroll)Astr+= ",scrollbars";
        if(Amenu)Astr+= ",menubar";
        if(Aresize)Astr+= ",resizable";
        window.open(Aurl,Aname,Astr);
}

