// Time is relative. If you cannot grok this, you should neither read nor copy this script.

function MPLCount()
{

var MPLKiss = new Date("December 3,1999 20:01:00 GMT");
var Sand = new Date();
var MPLResult = parseInt(((MPLKiss - Sand)/1000/60/60/24));
var Hours = (MPLKiss - Sand)/1000/60/60;
var Sol = ((Sand-MPLKiss)/1000/60/60/24);

if (MPLResult >= 1) document.write(MPLResult);
if (MPLResult == 1) document.write("<BR>day");
else
if (MPLResult > 1) document.write("<BR>days");

if (MPLResult == 1)  document.write("<BR>");
if (Hours > 1)  Hours = parseInt(Hours);
else if (Hours < 1 && Hours > 0)  Hours = 1;
if (Hours > 0)  document.write(Hours);
if (Hours > 1)
document.write(" hours");
else 
if (Hours == 1)  document.write (" hour");

if (Sol < 1 && Sol > 0)  Sol = 1;
else
if (Sol > 0)  {Sol = (parseInt(Sol)) + 1;  document.write("Sol " + Sol);}

}

function ConfCount()
{

var Fixity = new Date("August 10,2000 04:00:00 GMT");
var Sand = new Date();
var ConfResult = parseInt(((Fixity - Sand)/1000/60/60/24));

document.write(ConfResult);

}