/*-------------- LOOK HERE : NEW TAGGING ------------*/
/* This is for Tracking both the SpotLightTags and FloodLight tags from doubleclick random Number */
/* for URL pass everything up to the random value to be generated */
/* ex1: http://fls.doubleclick.net/activityi;src=1649160;type=ritzzz;cat=recprnt;ord= (ord is the random element) */
/* ex2: http://fls.doubleclick.net/activityi;src=1649160;type=ritzzz;cat=tlfrnd;ord=1;num= (num is the random element) */
/* for tagID pass the id of the iframe or image element (defaults to "doubleclick_tag" if no tagID is passed in) */
/*-------------------------------------------------*/  

function getDoubleClickTag(URL,tagID){
	var axel = Math.random()+"";
	var a = axel * 10000000000000;
	src = URL + a + '?';
	
	if (!tagID || tagID == ""){
		tagID = "doubleclick_tag";
	};
	
	if(getDoubleClickTag){
		document.getElementById(tagID).src = src;
		//alert(src);
	}
}