var lrgimgwin;
function pop_lrg(img_name, pr_name, ht)
{ var output = "";
  if (ht == 'L'){
  lrgimgwin=window.open('','lrg', 'resizable=yes,height=400,width=450,scrollbars=no,status=yes');
  }
  else {
  lrgimgwin=window.open('','lrg', 'resizable=yes,height=500,width=450,scrollbars=no,status=yes');
  }
  
  if (lrgimgwin.opener == null) {
 	 lrgimgwin.opener = self;
  }
    output += "<html><head><title>Practitioner Directory</title>";
	output += "<link href='../css/we.css' rel='stylesheet' type='text/css'></head>";
	output += "<body bgcolor='#FFCE9C' text='#660000'></body></html>";
	output += "<table width='100%' border='0' cellspacing='1' cellpadding='0'>";
	output += "<tr><td>&nbsp\;</td><td>";
	output += pr_name;
	output += "</td></tr>";
	output += "<tr><td width='70' align='center' valign='top' bgcolor='#CC9966'>";
	output += "<img name='bullet' src='../common/sq_brown.jpg' width='5' height='5' align='absmiddle'><a href='javascript:window.close()\;' class='smallanchor_br'>&nbsp\;CLOSE</a></td>";
	output += "<td><img name='pr_img' src='";
	output += img_name;
	output += "' alt=''></td></tr></table>";
	lrgimgwin.document.write(output);
	lrgimgwin.document.close();
   
}

