function lawdcipopup(elid,type,width,height,site){
var winl = (screen.width-width)/2;
  var wint = (screen.height-height)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
	newwin=window.open('http://www1.wnec.edu/assets/cfm/lawdci_popup.cfm?id=' + elid + '&site=' + site + '&type=' + type,'popup','width=' + width + ',height=' + height + ',scrollbars=1,resizable=1,status=1,top='+wint+',left='+winl);
newwin.focus();
	}