function changeClass(objID, strNewClass) 
{
  //objIdentity=document.getElementById(objID.id);
  objID.className=strNewClass;
}

function redirect(strURL)
{
	location.href = strURL;
}

function copyToClipboard(strTextToClipboard, strTextToPrint)
{
  if(window.clipboardData && clipboardData.setData)
  {
    strTemp = document.getElementById('divMessageBox').innerHTML;
    clipboardData.setData("text", strTextToClipboard);
    
    document.getElementById('divMessageBox').innerHTML = strTemp + "<p style='margin-top: 10px; width: 100%;'>" + strTextToPrint + "</p>";
    
  }
}