var curver = '2.8a';
var reqver = '2.8a';
//do not change the format of the above line

if (myver < reqver) {
	document.write('<font color="#FF6666"><blink>*</blink>your cpshop installation is out-of-date: <b><a target="_blank" href="http://www.marty.net/scripts/cpshop/dist/" style="color:#FF6666">download the ' + curver + ' update</a></b>');
} else if (myver < curver) {
	document.write('<font color="#FFCC33"><blink>*</blink>an optional cpshop update is available: <b><a target="_blank" href="http://www.marty.net/scripts/cpshop/dist/" style="color:#FF6666">download the ' + curver + ' update</a></b>');
} else {
	document.write('<font color="#99FF99">your version of cpshop is up-to-date</font>');
}

