﻿function submit_jobs() {
	if ( confirm( "請在送出職位空缺資料前仔細檢查各項．是否現在就送出職位空缺資料？" ) ) {
		document.eform.submit();
	}
}

function openDialog( urls , width, height )
{
//	var width = 640;
//	var height = 480;
	
	var left = Math.floor( (screen.width - width ) / 2);
	var top = Math.floor( (screen.height - height ) / 2);
	
//	var winParams = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
	var winParams =
			"screenY=" + top + ",screenX=" + left +
			",height=" + height + ",width=" + width +
			",resizable=yes" +
			",scrollbars=yes";
	
	pw = window.open( urls, "TIC", winParams );
	pw.focus();
}
