﻿
function Advertisement(_Delay, imgPath) {
    this.SecondDelay = (_Delay * 1000);
    
    var Img = new Image();
    Img.src = imgPath;

    this.Image = Img;
}
