//this is javascript, please don't mess around with this.

function track_click( type ){
	var body = document.getElementsByTagName( 'body' )[0];
	//append a script with this url to the body element
	var script = document.createElement( 'script' );
	script.src = 'http://www.dealshine.com/scripts/track_click/' + type;
	script.type = 'text/javascript';
	script.language = 'Javascript';
	body.appendChild( script );
	return abc_conversion_track();
}
