function winopen(url,name,w,h){
width=w;
height=h;
x=(screen.availWidth/2) - (w/2);
y=(screen.availHeight/2) - (h/2);
window.open(url,name,'location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+x+',top='+y);
}

function winopen_s(url,name,w,h){
width=w;
height=h;
x=(screen.availWidth/2) - (w/2);
y=(screen.availHeight/2) - (h/2);
window.open(url,name,'location=no,status=no,menubar=no,scrollbars=auto,resizable=no,width='+width+',height='+height+',left='+x+',top='+y);
}

function on_f(nm,key){
	if(nm.value==key)	nm.value='';
}

function on_b(nm,key){
	if(nm.value=='')	nm.value=key;
}

function b_name(){
}

function win_arifureru(h){
	var w = 820;
	var h = h;
	var str = navigator.appName.toUpperCase();
	//if (str.indexOf("NETSCAPE") >= 0) alert("Netscape");
	if (str.indexOf("EXPLORER") >= 0){
		w=w+10;
		h=h+36;
	}
	resizeTo(w,h);
}