function win(title,filename,width,height)
	{
	var margin_x=10;
	var margin_y=10;
	var w=width+2*margin_x+2;
	var h=height+2*margin_y+2;
	var params='status=yes,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h;
	picwindow=window.open("","",params);
	picwindow.document.write('<html>\n<head>\n<title>'+title+'</title>\n<link rel="stylesheet" type="text/css" href="style-01.css">\n</head>\n');
	picwindow.document.write('<body bgcolor="#FFFFFF" leftmargin="'+margin_x+'" topmargin="'+margin_y+'" marginwidth="'+margin_x+'" marginheight="'+margin_y+'">\n');
	picwindow.document.write('<a href="javascript:window.close();"><img src="'+filename+'" width="'+width+'" height="'+height+'" alt="'+title+'" style="border-style:solid;border-width:1px;border-color:#4C4C4C"></a>\n');
	picwindow.document.write('</body>\n</html>');
	}

function preload_images()
	{
	images=new Array();
	images[0]=new Image();
	images[0].src='4-01-02.gif';
	}
