function calpopup(lnk) {
	window.open(lnk, "calendar","height=200,width=180");
}

function toggleBox(id){
    var tgt;
    tgt = document.getElementById(id);
    if(tgt.style.display == "none"){
       tgt.style.display = "block";
    }else{
      tgt.style.display = "none";
    }
}

function showHide(elementId, widget){
   var tgt;
   tgt = document.getElementById(elementId);
   if(widget == "p"){
      tgt.style.display = "block";
   }else{
      tgt.style.display = "none";
   }
}

function poptandc(url, w, h){
    window.open(url, "tandcwindow", "scrollbars=1,menubar=0,resizable=0,width=" + w + ",height=" + h + ",location=0,status=0,toolbar=0,directories=0");
    return false;
}

function hidepopup(){
    document.getElementById('cartlayer').style.display = 'none';
    return false;
}

function showmenu(menu){
    var m;
    m = document.getElementById(menu);
    if(m.style.display == "block"){
        m.style.display = "none";
    }else{
        m.style.display = "block";
    }
    return false;
}
