//openWindow('URL','ウィンドウネーム','ツールバー','幅','高さ');return false

function openWindow(win_url,win_name,win_toolbar,win_width,win_height){
	if (win_height >= (screen.height-30)){
		win_height = screen.height-100;
		}


	var win_data = "toolbar=" + win_toolbar + ",location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height;
	WinOpen = window.open(win_url,win_name,win_data);
	WinOpen.focus();
}


function OpenWin( sTRURL ){
		var screen_width = screen.availWidth - 10;
		var screen_height = screen.availHeight - 30;
		sTRFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
		sTRFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

		windowname=window.open( sTRURL, "", sTRFeatures );
		windowname.focus();
}
