/*
Script: CountDown Timer Helper
Description: Counts down or up from a date (this is the non-XML version)
Author: Andrew Urquhart, modded by Alex Ciurczak
Home: http://andrewu.co.uk/clj/countdown/
This helper script allows multiple countdowns to be called by same command
*/

function getcountdownnum() {
	var id = "countdown1";
	var objH = 1; // temp boolean true value
	if (document.getElementById || document.all) {
		for (var i=1; objH; ++i) {
			id = "countdown" + i;
			objH	= document.getElementById(id);
		}
	}
	return id;
};