var davImg = new Image();

function _scdav(_sctitle,_sccontainer,_scgroup)
{

//	_sctitle = Title of the Stream
//	_sccontainer = Name of the Stream's Container Page or Referring Page
//	_scgroup = This parameter should be omitted unless you are uniquely identifying the group of streams
//	 	   (like a program name, special section of your website, or video ad package) 
//		   and you want this data to be available in the syndicated service

var ScImgSrc;


var ScRandom = Math.ceil(Math.random()*1000000000);
	ScImgSrc = 'http://secure-us.imrworldwide.com/cgi-bin/m?ci=us-abcnews';
	ScImgSrc += '&cg=' + escape(_scgroup);				//Content Group	(Not Necessary)
	ScImgSrc += '&si=' + escape(_sccontainer);				//Container of Stream
	ScImgSrc += '&tl=dav0-' + escape(_sctitle);				//Title of the Stream
	ScImgSrc += '&c0=pa,' + escape('Walt Disney Internet Group');	//MarketView Parent
	ScImgSrc += '&c1=br,' + escape('ABCNEWS Digital Network');		//MarketView Brand
	ScImgSrc += '&c2=ch,' + escape('ABCNEWS');				//MarketView Channel
	//ScImgSrc += '&c3=st,' + escape('StreamType');			//Use only if tagging advertising	
	ScImgSrc += '&cc=1';						//Cookie Check (Always on)
	ScImgSrc += '&rnd=' + ScRandom;
	
		
	davImg = "";
	davImg = new Image();
	davImg.src = ScImgSrc;
}
