function image_dot_border (Img_URL,Img_W,Img_H) {

	var Table_W,Table_H,Td_W,Td_H;
	
	Table_W = Img_W + 4;
	Table_H = Img_H + 4;
	Td_W = Img_W + 2;
	Td_H = Img_H + 2;
	
	document.write('<table width=',Table_W,' height=',Table_H,' cellspacing=0 cellpadding=0>');
	
	document.write('<tr height=1>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('<td background=/i/bg_.gif width=',Td_W,'><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('</tr>');
	
	document.write('<tr valign=middle height=',Td_H,'>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('<td align=center width=',Td_W,'><img src=',Img_URL,' width=',Img_W,' height=',Img_H,'></td>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('</tr>');
	
	document.write('<tr height=1>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('<td background=/i/bg_.gif width=',Td_W,'><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('<td background=/i/bg_.gif width=1><img src=/i/bg_.gif width=1 height=1></td>');
	document.write('</tr>');
	
	document.write('</table>');

}

function DV(Img_URL,wW,wH,dText,dText2){
	
	var Img_Opener,W_Param,wH;
	
	W_Param="toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,width="+wW+",height="+wH;
	Img_Opener=window.open("","_blank",W_Param);
	Img_Opener.document.open();
	Img_Opener.document.write('<html><head><title>'+dText+'</title><link rel=stylesheet href=/ie.css type=text/css></head><body aLink=#7394a0 bgColor=#FEFEF3 leftMargin=0 link=#333333 text=#333333 topMargin=0 vLink=#666666 marginwidth=0 marginheight=0><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr valign=top><td align=center><table>');
	if (Img_URL == '-') {
	
	}
	else {
		Img_Opener.document.write('<tr valign=top><td><img src=/i/news/'+Img_URL+'.jpg border=0></td></tr>');
	}
	Img_Opener.document.write('<tr valign=top><td class=tv><b>'+dText+'</b><br>'+dText2+'</td></tr></table></td></tr></table></body></html>');
	Img_Opener.document.close();
	Img_Opener.focus();
}