// Misc JavaScript functions
var latestVersion = '0.0.8.3';
var versionDate = '13-Jul-2008';
var changelogURL = 'http://sourceforge.net/project/shownotes.php?group_id=176648&release_id=613187'
	
function writeVersionInfo() {
    document.write('<h2>Latest version</h2>');
    document.write('<p><a href="download.html" title="get the latest version">');
	document.write(latestVersion)
	document.write('</a><br />');
	document.write(versionDate);
	document.write('</p>');
}

function writeVersionNumber() {
	document.write(latestVersion)
}

function writeSetupLink() {
	document.write('<a href="http://prdownloads.sourceforge.net/cidee/cIDEE-')
	document.write(latestVersion);
	document.write('-Setup.zip?download"')
    document.write('title="download the cIDEE installer">');
	document.write('cIDEE ');
    document.write(latestVersion);
	document.write(' installer</a>');
}

function writeSourcesLink() {
	document.write('<a href="http://prdownloads.sourceforge.net/cidee/cidee-')
	document.write(latestVersion);
	document.write('-sources.zip?download"')
    document.write('title="download cIDEE sources">');
	document.write('cIDEE ');
    document.write(latestVersion);
	document.write(' source code</a>');
}

function writeChangelogLink() {
	document.write('<a href="')
	document.write(changelogURL);
	document.write('"')
	document.write('onclick="window.open(\'');
	document.write(changelogURL);
	document.write('\', \'sfnotes\');return false;"')
    document.write('title="click to see release notes">');
	document.write('cIDEE change log</a>');
}
