
function pophelp(context){
	var helppage;
	helppage = 'esp_help.aspx?topicid=' + context;
	var newWindow=window.open(helppage, '_blank', 'width=700,height=500,scrollbars=yes,resizable=yes,location=no,status=no,toolbar=no,menubar=no')
	}
	
function popbvi(reqid, mwref, regno){
	var bvipage;
	bvipage = 'bvi_full.aspx?Veh_req_ID=' + reqid;
	if(mwref!=''){
		bvipage += '&MWRef=' + mwref
		}
	if(regno!=''){
		bvipage+='&Regno=' + regno
		}
	
	var newWindow=window.open(bvippage, '_blank', 'width=700,height=500,scrollbars=yes,resizable=yes,location=no,status=no,toolbar=no,menubar=no')
	}
	
function subpop(myURL){
	var subpage;
	subpage = myURL;
	var newWindow=window.open(subpage, '_blank', 'width=1000,height=600,scrollbars=yes,resizable=yes,location=no,status=no,toolbar=no,menubar=no')
	}
	
function showpartnotes(notesuser, part, notes){

document.getElementById('whosenotes').innerHTML = notesuser;
document.getElementById('notespart').innerHTML = part;
document.getElementById('thisnote').innerHTML = notes;
notespopup_show();
}
