
/*
	-----------------------------------------------------------------
	Method:			tagOnclick
	Description:
	-----------------------------------------------------------------
*/
function tagOnclick(iTag) {

var sTag = iTag.toString();
	
	//---------------------------------------
	// Tags constants are represented as 
	// 2 or 3 character constants, but the 
	// 05 comes into this routine as 5.
	//---------------------------------------
	if (sTag.length == 1)
		sTag = "0" + sTag;
	
	window.open("HTMLTagPage.asp?tag=" + sTag);
	
}