// JavaScript Document

////////////////////////////////////////////////////////////////////////////////////////////////////////


// SCRIPT 3. COPYRIGHT FUNCTION

function showCopyright() 
{

var d = new Date()
document.write("&copy; ");
document.write(d.getFullYear())
document.write(" MediaSolv Solutions Corp. All Rights Reserved.");

}


////////////////////////////////////////////////////////////////////////////////////////////////////////
