function showBig(img_path, img_name, img_alt)
{
    var str, StrBody, name_vin;
    
    img_name = document.title;

        if (img_alt) {
  	  str = 'resizable=yes,width=100,height=100,screenX=100,screenY=100,left=100,top=100, Scrollbars=1';
  	}else {
	  str = 'resizable=yes,width=100,height=100,screenX=100,screenY=100,left=100,top=100';
	}

	StrBody = '<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="White"" onresize="self.window.location.reload();">';
	
	name_vin = 'show' + parseInt(Math.random()*100000000000000);

	var win_op = window.open('', name_vin, str);
	win_op.document.open();
	win_op.document.writeln('<html>');
	win_op.document.writeln('<head>');
	win_op.document.writeln('<title>' + img_name + '</title>');
	win_op.document.writeln('<LINK REL=STYLESHEET TYPE="text/css" HREF="style.css">');
	win_op.document.writeln('<style>');
	win_op.document.writeln('B {font-family: Arial, Sans-serif; font-size: 11px; color: #6F859E;text-align: justify;}');
	win_op.document.writeln('</style>');
	win_op.document.writeln('<script>');
	win_op.document.writeln('function resize_img() {');
        if (!img_alt) {
  	  win_op.document.writeln('var width = document.image.width + 5;');
  	  win_op.document.writeln('var height = document.image.height + 50;');
  	}else {
	  win_op.document.writeln('var width = document.image.width + 30;');
  	  win_op.document.writeln('var height = document.image.height + 130;');
  	}
	win_op.document.writeln('self.resizeTo(width,height);');
	win_op.document.writeln('}');
	win_op.document.writeln('</scr' + 'ipt>');	
	win_op.document.writeln('</he' + 'ad>');
	win_op.document.writeln(StrBody);
	if (img_alt)
  	  win_op.document.writeln('<table width="100%" border="0" cellspacing="5" cellpadding="5"><tr><td>' + img_alt+'</td></tr></table>');
	win_op.document.writeln('<img name="image" src='+ img_path + ' border=0 alt="'+img_alt+'" onload="resize_img();">');
	win_op.document.writeln('</body>');
	win_op.document.writeln('</html>');		
	win_op.document.close();
}
