function Wopen(url,w,h,n) {
	var winName = n;
	var Width   = 'width='   + w;
	var Height  = ',height=' + h;
	var Left    = ',left='   + ((screen.width - w) / 2);
	var Top     = ',top='    + ((screen.height- h) / 2);
	var Option = ',status=1,menubar=0,scrollbars=0,resizable=0';
	var features = Width + Height + Left + Top + Option;
	winName = window.open(url,winName,features);
	if (window.focus) {
		winName.focus();
	}
}

function WopenScroll(url,w,h,n) {
	var winName = n;
	var Width   = 'width='   + w;
	var Height  = ',height=' + h;
	var Left    = ',left='   + ((screen.width - w) / 2);
	var Top     = ',top='    + ((screen.height- h) / 2);
	var Option = ',status=1,menubar=0,scrollbars=1,resizable=0';
	var features = Width + Height + Left + Top + Option;
	winName = window.open(url,winName,features);
	if (window.focus) {
		winName.focus();
	}
}

//pulldown
function tree(t_name) {
	var disp = document.all(t_name).style.display;
	if(disp != "none" || disp == "") {
		document.all(t_name).style.display = "none";
		}
	else {document.all(t_name).style.display = "block";}
}

//onmouse

function swImg(iName,str)
{
	document.images[iName].src = str;
}

//pulldown
function tree(t_name) {
	var disp = document.all(t_name).style.display;
	if(disp != "none" || disp == "") {
		document.all(t_name).style.display = "none";
		}
	else {document.all(t_name).style.display = "block";}
}