// JavaScript Document

//pop up scripts

function displayTerms() {
aWindow=window.open("cond_online.aspx","","toolbar=no,width=475,height=570,status=no,scrollbars=yes,resize=no,menubars=no");
}

//print window
function printpage() {
window.print();
}

//mail page
function mailpage()
{
mail_str = "mailto:?subject=Check out (www.namal.lk) ";
mail_str += "&body=I thought you might be interested this page on " + document.title;
mail_str += ". You can view this page at (www.namal.lk) ";
location.href = mail_str;
}
