﻿CIMPFile.cs:
line 1918
use the file name rather than the full path to the image, this is becasue the url that was being produced is not 
in a standard format so e.g firefox won't read it, so left it as a relative url as all images created in the same directory as the html file. + calibres html2epub also works

method FormatDATAToHTML

	changed strFile from a string to a StringBuilder to enhance performance.


Progam.cs:
main function added parsing of parameters

So if more than 0 params looks for 2 params and assumes 1 is the path to imp 2 is the path to the output html file
otherwise shows and error message.


frmMain.cs

added property IsSilentOperation  
		idea being that when being run from commandline perhaps in a batch mode we would not want to do certain things like launch browser.

added method 
        public void CreateHTML(string ImpFileName, string outputHTML)
        
        this does the minimum nessisary to create a html from an imp calling the existing CreateHTML method
        
changed existing method CreateHTML        
		
		changed slightly to enable supply of the full path of the file to be produced.
		

        
