<!-- Help -->

function openpopup(){
var popurl="images/sample.html"
winpops=window.open(popurl,"","width=425,height=300,")
}
function openpopupa(){
var popurl="whatsthis.html"
winpops=window.open(popurl,"","width=325,height=200,")
}

function openpopupb(){
var popurl="terms.html"
winpops=window.open(popurl,"","width=325,height=200,")
}
<!-- comment describtion -->
function movein(which,html){

if (document.getElementById)
document.getElementById("boxdescription").innerHTML= GetHelpMessage(html);
else
boxdescription.innerHTML=GetHelpMessage(html);
}

function GetHelpMessage(nHelpID){

  strHelpString = "";

  switch (nHelpID)
  {
    case 1:
        strHelpString = "Ugly!";
        break;
    case 2:
        strHelpString = "So So";
        break;
    case 3:
        strHelpString = "There's something about";
        break;
    case 4:
        strHelpString = "Cool";
        break;
    case 5:
        strHelpString = "Funny";
        break;
    case 6:
        strHelpString = "Cute";
        break;
    case 7:
        strHelpString = "Pretty";
        break;
    case 8:
        strHelpString = "Lovely";
        break;
    case 9:
        strHelpString = "Awesome";
        break;
    case 10:
        strHelpString = "Star!";
        break;


  }

  return strHelpString;

}
