function openLineItem(target){
	e=document.getElementById(target);	
		if (e.style.display == 'block'){
			e.style.display = 'none'
		}else{
			e.style.display = 'block'
		}
}


function getDetails(DWGfile,DWGtype,winName,features) {
  window.open("resources/"+DWGtype+"/"+DWGfile+".pdf",winName,features);
}

