function viewImage(image,title)
 	{
    	if (image != '')
    	{
			openWin=window.open('','win1','toolbar=no,location=no,scrollbars=yes,resizable=no,width=415,height=465,screenX=200,screenY=225,top=200,left=200');
			openWin.document.open();
			openWin.document.write( '<html>'+
									'<head>'+
                                    '</head>'+
                                    '<title>'+title+'</title>'+
									'<body>'+
                                    '<IMG SRC="' + image + '" alt="">'+
                                    '</body>'+
                                    '</html>');
            openWin.document.close();
     	}
   	}
