﻿function popupWin(Brochure) {
    text = Brochure;
    setTimeout('windowProp(text)', 100);
    }
    function windowProp(text) {
        newWindow = window.open('http://localhost:64430/LifeStore/SiteControls/Products/Brochure.aspx?ProdID=' + text +'','newWin','width=1010,height=800,title=Brochures,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizeable=no');
        
        
    }
    function closeWin(newWindow) {
    newWindow.close();	
}

