//used for pop up windows

function openwindow(page,title)
{
window.open(page,title,"location=1,status=1,scrollbars=1,width=500,height=600");
}


//used for the { read more - less } links
function DoReadMore(tid1,tid2,tid3) {
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "";
document.getElementById(tid3).style.display = "";
}
function AbandonReadMore(tid1,tid2,tid3) {
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "none";
document.getElementById(tid3).style.display = "";
}