*
*/
@SuppressWarnings("serial")
public class EmptyPage extends JPanel {
public EmptyPage(){
this.setLayout(new WindowFormLayout(null));
this.setBackground(Color.white);
// Set the default page size
this.setSize(UIutils.milsToPixels(4000), UIutils.milsToPixels(3000));
}