// JavaScript Document

// arg1:width , arg2:height , arg3:path
function display(arg1,arg2,arg3)
{
	w = arg1;	// 558
	h = arg2;	// 500
	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;
	
	window.open(arg3,"","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h,"toolbar=no","resizable=no","directories=no","statusbar=no","menubar=no");
}

