function popEmail(section)
     {
        var page = window.open("contactus.html?section=" + section,"page","top=0,left=0,width=300,height=300,scrollbars=0,resizeable=1");
                        page.focus();
     }
     
function popNewsletter(section)
{
    var page = window.open("subscribe.html?section=" + section,"page","top=0,left=0,width=380,height=400,scrollbars=0,resizeable=1");
    page.focus();
}