

function showDynamicPopup(strHeader, strDesc, iWidth, iHeight)
{
    popupWin = window.open('', 'popupWin', 'width=' + iWidth + ',height=' + iHeight);

    popupWin.document.write("<html><head><link rel='stylesheet' type='text/css' href='/dive-styles.css'><title>Product Description</title></head><body><h2>"+strHeader+"</h2>"+ strDesc + "<br><br><center><a href='javascript:self.close();'>Close Window</a></center></body></html>");
    popupWin.document.close();
    popupWin.focus();
}

