﻿function openwindow(windowid) {
    newwin = window.open('/print.aspx?id=' + windowid + '', 'newwin', 'scrollbars=1,height=600px,width=550px,menubar=1,resizable=1,status=1,titlebar=1,toolbar=0');
    newwin.focus()
}

function open_testimonials(windowid) {
    newwin = window.open('/customers/testimonials/default.aspx?id=' + windowid + '', 'newwin', 'height=650,width=830,resizable=1,toolbar=1,scrollbars=1');
    newwin.focus()
}

function display_div(the_div) {
    style_div = document.getElementById(the_div);
    style_div.style.display = (style_div.style.display == "none" ? "block" : "none");
}
