﻿function showdiv(dn)
{
	var ocdiv = document.getElementById(dn);
    ocdiv.style.display = 'block';
}
         
         
function closediv(dn)
{
    var tblmsg = document.getElementById(dn);
    tblmsg.style.display = 'none';
}

function SetUpRedirect()
{
var destination = "free-trial.htm";
setTimeout("window.location=’"+destination+"‘",3000);
return true;
 }
