﻿/*------------------------------------------------*/
/*------------------------------------------------*/
// UTF-8
function PushItem(event, target, formname, url)
{
	document.forms[formname].method = 'post';
	document.forms[formname].action = url;
	document.forms[formname].target = target;

	document.forms[formname]._EVENT.value = event;

	document.forms[formname].submit();
}

function PushItemConfirm(name, target, formname, url, message)
{
	if (confirm(message)) {
		PushItem(name, target, formname, url);
	}
}

function FormReset(formname)
{
	document.forms[formname].reset();
}

function OpenPopupWindow(url, windowname, width, height) {
	window.open(
		url, windowname, "width="+width+",height="+height+",resizable=no,location=no,menubar=no,toolbar=no,status=no");
}

function ClosePopupWindow() {
	window.close();
}

