function popwnd(label, path, wig, hig)
{
var xtop = (screen.height-390)/2, xleft = (screen.width-258)/2;
var rule = "<img src='"+path+"' height='"+hig+"' width='"+wig+"' border=0 alt='1343'>";
msg = "<html><head><TITLE>"+label+"</TITLE></head>";
msg += "<BODY BGCOLOR=#ffffff leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0>" + rule +"</BODY></html>";

popup = window.open("","popDialog","height="+hig+",width="+wig+",top="+xtop+",left="+xleft+",scrollbars=no");
popup.document.write(msg);
popup.document.close();
}
