
function popup(url,nn,xw,yw,lp,tp) {
// yw = height
// yw = width
// lp = left
// tp = top
  var params = "'resizable=no','scrollbars=no',status,height=" + yw + ",width=" + xw + ",left=" + lp + ",top=" + tp;
  
	pop = window.open(url,nn,params);
  pop.focus();
	return pop;

}
