function fncGoNextPage(objForm,strNextFile){
	objForm.method = 'post';
	objForm.action = strNextFile;
	objForm.submit();
}

function fncGoNextPageWithFrameTarget(objForm,strNextFile,strTarget){
	objForm.method = 'post';
	objForm.target = strTarget;
	objForm.action = strNextFile;
	objForm.submit();
}

function fncNewWin(newWin,WindowNm,lngResize,lngWidth,lngHeight,lngScBars,lngTBars,lngLoc,lngStatus){
	window.open(newWin,WindowNm,'Resizable='+lngResize+',width='+lngWidth+',height='+lngHeight+',scrollbars='+lngScBars+',toolbar='+lngTBars+',location='+lngLoc+',status='+lngStatus);
}

function ReloadThisPage(){
	location.reload();
}