
function hald_openwin(myfile,width,height){

	if( !width ) width = 400;
	if( !height ) height = 400;
	var now=new Date()
	winname="a" + now.getTime()
	params = "width="+width+",height="+height+",resizable=1,status=0,scrollbars=1,toolbar=0,location=0,directories=0,menubar=1 ";
	newwin = window.open( myfile, winname , params)
	if( window.focus ) newwin.focus();

}

function switchResultPage(sGroup, iPage) {

	document.myForm.pagerGroup.value = sGroup;
	document.myForm.pagerPage.value = iPage;

	document.myForm.submit();

}

function resetResultPager() {

	document.myForm.pagerGroup.value = '';
	document.myForm.pagerPage.value = '';

}

function openTerminDetailWin(terminUrl) {

	hald_openwin(terminUrl, 680, 370);

}

