

function printPage() {
    var userAgent=navigator.userAgent.toLowerCase();

    if (window.print) {
        window.print();
    }
    else if (userAgent.indexOf("mac") != -1) {
        alert("Press 'Cmd+p' on your keyboard to print article.");
    }
    else {
        alert("Press 'Ctrl+p' on your keyboard to print article.")
    }
}

function open_email(gohere) {
    window.open(gohere, "email", config="height=475,width=500,scrollbars=yes,toolbar=no,menubar=yes,resizable=yes,top=0,left=0")
}

function confirmSubmit() {
    var agree=confirm("Do you really want to mark this prospect as in the database?");

    if (agree) return true ;
    else return false ;
}

function toggle_display(display_area) {
    if (document.getElementById(display_area)) { 
        var display_element = document.getElementById(display_area);
        display_element.style.display = display_element.style.display == "none" ? "block":"none"; 
    }
}
function show_block(block) {
	//alert(block);
	document.getElementById(block).style.display = "block";
}