function jsCancel() {
	var agree=confirm("You are about to cancel this job. If you click OK it will no longer be available.");
	if (agree)
		location.href="/xdx/2_0_main.jsp";
	else
		return false ;
}

function addDoc() {
	document.p3form.action="printjob.jsp";
	document.p3form.submit();
}

function genericFormSubmit() {
	document.forms[0].submit();
}

function goLoco(loco) {
	location.href=loco;
	}
function loadURL(goUrl) {
	location.href=goUrl;
}

function goFinish(goWhere) {
	document.forms[0].action = goWhere;
	document.forms[0].submit();
}

function visit(newURL) {
  if (newURL != "") {
    location.href=newURL
  }
}

function plainWindow(targetURL){
	plain_window = window.open(targetURL,"","resizable=true,width=640,height=480"); 
}


