function OpenNewsLetterSampleSite(szBrandWebSite)
{
window.open(szBrandWebSite,'_blank','')
return false;

}
function OpenNewsLetterSampleSite1(szBrandWebSite)
{
window.open(szBrandWebSite,'_blank','menubar=yes,resizable=yes,width=900, height=600, scrollbars=yes');
return false;

}

function OpenNewsLetterTipSite(szBrandWebSite)
{
window.open(szBrandWebSite,'_blank','width=900, height=430, menubar=yes, resizable=yes, scrollbars=yes');
//window.open(szBrandWebSite,'_blank','')

return false;
}

 function OpenOtherBrandSiteURL(szLabelID)
{

var LabelDescription = document.getElementById(szLabelID);
var szBrandWebSite;

if(LabelDescription.innerText == undefined)
  szBrandWebSite = LabelDescription.textContent;
else
  szBrandWebSite = LabelDescription.innerText;
  
//window.open('http://www.huggieshappybaby.com,'_blank','width=900, height=430, menubar=yes, resizable=yes, scrollbars=yes');
window.open(szBrandWebSite,'_blank','')

return false;
}

function SetBlur()
 {

    if (document.getElementById) 
    {
 
        var progress = document.getElementById('progress');
        var blur = document.getElementById('blur');
        
        blur.style.height = document.body.clientHeight;
        blur.style.width = document.body.clientWidth;
        blur.style.top =  document.body.scrollTop;
        blur.style.left = document.body.scrollLeft;
       // debugger;
               
        progress.style.top = (document.body.clientHeight)/2 +'px';
        progress.style.left = (document.body.clientWidth)/2+'px';

   }
}
