﻿
//========================
//簡略getElementById
//========================
function $(tagId)
{
	return document.getElementById(tagId);
}

//========================
//新規ウィンドウ
//========================

function Open_Win(strURL,strName,intWidth,intHeight){

if (window)
var option="";
option = "width="+intWidth+",height="+intHeight+",scrollbars=yes,resizable=yes,left=100,top=50";
option = option+",toolbar=no,location=no,status=no,directories=no";

win=window.open(strURL,strName,option);
win.focus();
}


//=================================
// 戻るボタン
//=================================
function Return_Page(objForm)
{

	objForm.action=$('RETURN_PAGE').value;
	//objForm.RETURN.value='Y';
	$('RETURN').value='Y';
	objForm.submit();
	return false;
}

//=================================
// 戻るボタン共通
//=================================
function Return_Step(strStep)
{
	$('step').value = strStep;
	document.forms[0].submit();
	return false;
}



