function jobApplyPopUp(jobID)
{
	// 画面中央にjobApplyページをポップアップアップ表示する
	
	wx = 520;
	wy = 630;
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	
	
	win=window.open('JobApplicationEntry.aspx?jobID=' + jobID, 'jobApplyPopUp','left='+x+',top='+y+',width='+wx+',height='+wy+',resizable=no,scrollbars=no');
	win.focus();

}

function closePopupandOpenNextPage(jobID)
{
	window.opener.location.href='CandidateEntry1st.aspx?jobID=' + jobID
    window.close();
}

function resumeUploadPopupOpen(url){
	var page = url;
	var desc = window.open(page, 'RESUME_UPLOAD', 'menubar=no, scrollbars=no, height=175, width=510');
	desc.focus();
}

function calendarPicker(formField)
{
	// 画面中央に日付選択用のカレンダーをポップアップアップ表示する
	
	wx = 185;
	wy = 215;
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	
	var win = window.open('CalenderDisplay.aspx?field=' + formField, 'calendarPopUp', 'left='+x+',top='+y+',width='+wx+',height='+wy+',resizable=yes,scrollbars=no,menubar=no');
    win.focus();
}