function CopyRight()
{
	var myDate = new Date();
	wYY = myDate.getFullYear();
	//alert(wYY);
	strOutput = "Copyright &copy;" + wYY + " PASONA N A, Inc. All Rights Reserved.";	
														
    document.write(strOutput);
    document.close();
    
}

