/*randomly selects 2 of 8 rows of sponsors to display in right rail*/
function show_random_company_profile() {
    var id1 = Math.floor(Math.random() * 8);
    var id2 = Math.floor(Math.random() * 8);
    if(id1 == id2){
        id2=7%id1;
    }
    document.getElementById('random_'+id1).style.display = "block";
    document.getElementById('random_'+id2).style.display = "block";
//	console.log("id1:" + id1);
//	console.log("id2:" + id2);
//	console.log("id2:" + id2);
}

function goto_page(el) {
    cur = location.href;
    location.href= cur + "programs#" + el;
}

