function openFileWin(page,val,field,docDir){
	var width = 392;
	var height = 234;
	var left = (screen.width-width)/2;
	var top = (screen.height-height)/3;
	hlpWidth = (screen.width);
	var win = open(page+"?val="+val+"&field="+field+"&docDir="+docDir,'null', "scrollbars=yes, toolbar=no, status=no, menubar=no, width="+width+", height="+height+", left="+left+", top="+top+"");
}

function openCVwin (page, id) {
	var width = 392;
	var height = 234;
	var left = (screen.width-width)/2;
	var top = (screen.height-height)/3;
	var win = open(page+"?p_id="+id, "", "scrollbars=yes, toolbar=no, status=no, menubar=no, width="+width+", height="+height+", left="+left+", top="+top+"");
}

function setUploaded(fld,val) {
	document.all[fld].value = val;
	document.postingFrm.action = "";
	document.postingFrm.submit ();
}



