/*
 * IEの場合が厄介で、標準モードと互換モードで取得方法が異なる････
 標準モードの場合、
 document.documentElement.clientHeight
 互換モードの場合は
 document.body.clientHeight
 *
 * */

function openwindow( url, pid ) {
	var opt, hh, ww ;

	alert("Pass wopenwindow!");

	ww = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
	hh = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
	opt = "" ;

    window.open( url, pid, opt ) ;
}

function openwindow2( url ) {
	var opt, hh, ww ;

    window.open( url ) ;

}

function startproc( aflg, csvflg ) {

	if ( aflg!=0 ) {
		autoupdate() ;
	}


	if ( csvflg!=0 ) {
		csvdownload() ;
	}

}

function reload() {
    window.location.reload( true );
}

function onmouse() {
	document.body.style.cursor = "pointer" ;
}

function outmouse() {
	document.body.style.cursor = "auto" ;
}




