function getEmail(un,d)
{
    if(d == null || d == "")
        d = "omlaw.com";
    return un + "@" + d;
}
function getEmailLink(un,d)
{
    var url = "mailto:" + getEmail(un,d);
    window.location.href = url;
}
function getEmailLinkWithSubject(un,d,s)
{
    var url = "mailto:" + getEmail(un,d) + "?subject=" + s;
    window.location.href = url;
}
function emailWin(un,d,s) {
	window.open("/popups/email-alert.aspx?un=" + un + "&d=" + d + "&s=" + s, "EmailNotice",
				"toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=405,height=405");
}
function newsletterWin() {
	window.open("/popups/newsletter-signup.aspx", "NewsletterSignup",
				"toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=405,height=405");
}
function blogWin() {
	window.open("/popups/azapp-blog-signup.aspx", "AZAPPBlogSignup",
				"toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=405,height=405");
}

function expand_item(itm_name) {
    document.getElementById(itm_name + '-expanded').style.display = "block";
    document.getElementById(itm_name + '-collapsed').style.display = "none";
}
function collapse_item(itm_name) {
    document.getElementById(itm_name + '-expanded').style.display = "none";
    document.getElementById(itm_name + '-collapsed').style.display = "block";
}

