if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method=this,args=arguments,object=args[0];
		return function(event) {var a = args;a[0]=(event || window.event);return __method.apply(object,a);}
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVLBP) == "undefined") {
	IDTVLBP = function () {this.initialize.apply(this, arguments);};
	IDTVLBP.prototype = {
		frame: null,
		initialize: function (ds) {
			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
				if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_9b55cccc65')[0];
				} catch(e) {}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_tb"></div><div class="idtv_inres"></div><div class="idtv_bb"></div></div>';
			this.elementout = this.element.getElementsByTagName('div')[0];
			this.elementin = this.element.getElementsByTagName('div')[2];
			this.results = new Array();
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if (i % 2) nr.className += ' alt';
					jsonArr[i].title_esc = jsonArr[i].title.replace(/"/g, "&quot;");// "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title) {
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + jsonArr[i].title + "</span>";
						}
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + jsonArr[i].author + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') +jsonArr[i].length_seconds;
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + this.formatCommasInt(jsonArr[i].view_count);
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + Math.customRound(jsonArr[i].rating_avg, 1) + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + jsonArr[i].description + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate) {
						if (this.ds.thumbnail_text == 'N') {
							nr.innerHTML += t;
							nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
						} else {
							nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
							nr.innerHTML += t;
						}
					}
					else
						nr.innerHTML += t;
					this.elementin.appendChild(nr);
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/9b55cccc65/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded)
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh + 'toolbar=no,status=no,scrollbars=no,resize=no');
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

			}
			/*this.frameholder.style.top = this.results[i].offsetTop + "px";
			this.frameholder.style.left = this.results[i].offsetLeft + this.results[i].offsetWidth + "px";*/
			var scrlX = (window.pageXOffset || document.body.scrollLeft || document.documentElement.scrollLeft);
		    var scrlY = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		    var viewportW = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth ;
		    var viewportH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		    var element = this.elementout;
			var elFixedX = 0, elFixedY = 0;
		    do {
		    	elFixedY += element.offsetTop  || 0; elFixedX += element.offsetLeft || 0; element = element.offsetParent || element.parentNode;
		    } while (element);
		    var nx = 0, ny =0;
			switch (this.ds.plpl) {
				case "center":
					nx = scrlX + ((viewportW - this.ds.plw) / 2) - elFixedX;
					ny = scrlY + ((viewportH - this.ds.plh) / 2) - elFixedY;
					break;
				case "left":
					nx = this.results[i].offsetLeft - this.ds.plw;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "right":
					nx = this.results[i].offsetLeft + this.results[i].offsetWidth;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "top":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop - this.ds.plh;
					break;
				case "bottom":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop + this.results[i].offsetHeight;
					break;
				default: return;
			}
			if (this.ba) {
				nx += elFixedX; ny += elFixedY;
				if (nx < 0) nx = 0;
				if (ny < 0) ny = 0;
			} else {
				if (this.ds.plpl != "center") { // some checks if top/left it is out of the viewport
					var rx = nx + elFixedX, ry = ny + elFixedY;
					if (rx < 0) nx -= rx;
					if (ry < 0) ny -= ry;
				}
			}
			this.frameholder.style.left = nx + "px";
			this.frameholder.style.top = ny + "px";

			this.frameholder.style.display = 'block';
			var loaded = false;
			try {
				if (this.frame.contentWindow && this.frame.contentWindow.Player) { // detect if script access is allowed
					this.frame.contentWindow.Player.playlist.selectItem(i);
					this.frame.contentWindow.Player.playlist.playSelected();
					loaded = true;
				}
			} catch (e) {};
			if (!loaded) {
				if (this.frame.parentNode == this.frameholder) this.frameholder.removeChild(this.frame);
				this.frame.src = 'http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id;
				this.frameholder.appendChild(this.frame);
			}
		},
		closeplr: function (event) { this.frameholder.style.display='none'; this.frameholder.removeChild(this.frame); },
		nextP: function () { if (this.page < this.maxpage - 1) { this.page ++; this.showRes(); } },
		prevP: function () { if (this.page > 0) { this.page --; this.showRes(); } },
		formatCommasInt: function (val) {
			var s = new String(val);
			var rgx = /(\d+)(\d{3})/;
			while (rgx.test(s)) s = s.replace(rgx, '$1' + ',' + '$2');
			return s;
		}
	}
}

var IDTVLBDataSource9b55cccc65 = {
	id: '9b55cccc65', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 252, height: 102, pp: 1,
	rows: 1, cols: 1,
	plw: 500, plh: 420,
	createP: function () {this.p = new IDTVLBP(this); },
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'R',
	pldelta: 0,
		data: {results: [{id:'v06YyxObm9g',title:'Vaccination - The Hidden Truth 1 of 9',author:'the404man',real_length:'600',length_seconds:'10:00',rating_avg:'4.5555553',rating_count:'36',view_count:'6577',description:'for the full doc go here http://www.vaccination.inoz.com or for the first half of the doc go here http://video.google.com/videoplay?docid=-6696666502913965744or for part 2 go here http://www.youtube.com/watch?v=kTMY-1S8Q3YThis is the shocking but extremely informative video documentary \u0022Vaccination - The Hidden Truth\u0022 where 15 people,  including Dr. Viera Scheibner (a PhD researcher), five medical doctors, other researchers, and parents\' experiences, reveal what is really going on in relation to illness and vaccines.With so much government and medical promotion of vaccination for prevention of disease, ironically the important facts presented here come from the orthodox medicine\'s own peer-reviewed research, of which a total of well over 100,000 pages has been studied by those interviewed. The result is a damning account of the ineffectiveness of vaccines and their often harmful effects.It shows that parents are not being told the truth by the media, the Health Department and the medical establishment, with a medical doctor, Dr. Mark Donohoe, confessing that \u0022It is a problem for me that I am part of a profession that is systematically lying to people.\u0022Find out how vaccines are proven to be both useless and have harmful effects to your health and how they are often erroneously believed to be compulsory.Many people simply refuse to believe the truth regardless of how clear it is, but the impeccable documentation presented in this amazing video has changed the minds of many who have seen it. To purchase the whole DVD/video, go to http://www.vaccination.inoz.com',tags:'lies, truth, love, hate, tits, ass, girl, boy, funny, sad, Vaccination',thumbnail_url:'http://i.ytimg.com/vi/v06YyxObm9g/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/v06YyxObm9g/responses',ord:'11',mid:'31302'},{id:'kTMY-1S8Q3Y',title:'Vaccination - The Hidden Truth 2 of 9',author:'the404man',real_length:'603',length_seconds:'10:03',rating_avg:'4.5454545',rating_count:'11',view_count:'1908',description:'for the full doc go here http://www.vaccination.inoz.com or for the first half of the doc go here http://video.google.com/videoplay?docid=-6696666502913965744or for part 3 go here http://www.youtube.com/watch?v=kTMY-1S8Q3YThis is the shocking but extremely informative video documentary \u0022Vaccination - The Hidden Truth\u0022 where 15 people,  including Dr. Viera Scheibner (a PhD researcher), five medical doctors, other researchers, and parents\' experiences, reveal what is really going on in relation to illness and vaccines.With so much government and medical promotion of vaccination for prevention of disease, ironically the important facts presented here come from the orthodox medicine\'s own peer-reviewed research, of which a total of well over 100,000 pages has been studied by those interviewed. The result is a damning account of the ineffectiveness of vaccines and their often harmful effects.It shows that parents are not being told the truth by the media, the Health Department and the medical establishment, with a medical doctor, Dr. Mark Donohoe, confessing that \u0022It is a problem for me that I am part of a profession that is systematically lying to people.\u0022Find out how vaccines are proven to be both useless and have harmful effects to your health and how they are often erroneously believed to be compulsory.Many people simply refuse to believe the truth regardless of how clear it is, but the impeccable documentation presented in this amazing video has changed the minds of many who have seen it. To purchase the whole DVD/video, go to http://www.vaccination.inoz.com',tags:'love, hate, girl, boy, sad, funny, lies, truth, tits, ass, Vaccination',thumbnail_url:'http://i.ytimg.com/vi/kTMY-1S8Q3Y/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/kTMY-1S8Q3Y/responses',ord:'12',mid:'31303'},{id:'DSFQ8N_pqVY',title:'Vaccination - The Hidden Truth 3 of 9',author:'the404man',real_length:'600',length_seconds:'10:00',rating_avg:'5.0',rating_count:'5',view_count:'1094',description:'for the full doc go here http://www.vaccination.inoz.com or for the first half of the doc go here http://video.google.com/videoplay?docid=-6696666502913965744or for part 4 go here http://www.youtube.com/watch?v=kTMY-1S8Q3YThis is the shocking but extremely informative video documentary \u0022Vaccination - The Hidden Truth\u0022 where 15 people,  including Dr. Viera Scheibner (a PhD researcher), five medical doctors, other researchers, and parents\' experiences, reveal what is really going on in relation to illness and vaccines.With so much government and medical promotion of vaccination for prevention of disease, ironically the important facts presented here come from the orthodox medicine\'s own peer-reviewed research, of which a total of well over 100,000 pages has been studied by those interviewed. The result is a damning account of the ineffectiveness of vaccines and their often harmful effects.It shows that parents are not being told the truth by the media, the Health Department and the medical establishment, with a medical doctor, Dr. Mark Donohoe, confessing that \u0022It is a problem for me that I am part of a profession that is systematically lying to people.\u0022Find out how vaccines are proven to be both useless and have harmful effects to your health and how they are often erroneously believed to be compulsory.Many people simply refuse to believe the truth regardless of how clear it is, but the impeccable documentation presented in this amazing video has changed the minds of many who have seen it. To purchase the whole DVD/video, go to http://www.vaccination.inoz.com',tags:'truth, lies, love, hate, girl, boy, sad, happy, tits, ass, Vaccination',thumbnail_url:'http://i.ytimg.com/vi/DSFQ8N_pqVY/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/DSFQ8N_pqVY/responses',ord:'13',mid:'31304'},{id:'LU1HL3gnSvM',title:'Vaccination - The Hidden Truth 4 of 9',author:'the404man',real_length:'603',length_seconds:'10:03',rating_avg:'4.5',rating_count:'8',view_count:'1068',description:'for the full doc go here http://www.vaccination.inoz.com or for the first half of the doc go here http://video.google.com/videoplay?docid=-6696666502913965744This is the shocking but extremely informative video documentary \u0022Vaccination - The Hidden Truth\u0022 where 15 people,  including Dr. Viera Scheibner (a PhD researcher), five medical doctors, other researchers, and parents\' experiences, reveal what is really going on in relation to illness and vaccines.With so much government and medical promotion of vaccination for prevention of disease, ironically the important facts presented here come from the orthodox medicine\'s own peer-reviewed research, of which a total of well over 100,000 pages has been studied by those interviewed. The result is a damning account of the ineffectiveness of vaccines and their often harmful effects.It shows that parents are not being told the truth by the media, the Health Department and the medical establishment, with a medical doctor, Dr. Mark Donohoe, confessing that \u0022It is a problem for me that I am part of a profession that is systematically lying to people.\u0022Find out how vaccines are proven to be both useless and have harmful effects to your health and how they are often erroneously believed to be compulsory.Many people simply refuse to believe the truth regardless of how clear it is, but the impeccable documentation presented in this amazing video has changed the minds of many who have seen it. To purchase the whole DVD/video, go to http://www.vaccination.inoz.com',tags:'love, hate, boy, girl, truth, lies, tits, ass, happy, sad, Vaccination',thumbnail_url:'http://i.ytimg.com/vi/LU1HL3gnSvM/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/LU1HL3gnSvM/responses',ord:'14',mid:'31305'},{id:'GQYISvsgq6s',title:'Part 1: Mercury Toxicity &amp; Autism',author:'octomedia',real_length:'341',length_seconds:'05:41',rating_avg:'4.63354',rating_count:'161',view_count:'35458',description:'Mercury Toxicity &amp; Autism Part 1Dr. Boyd Haley is a professor and chair of the chemistry department at the University of Kentucky. In this interview, Dr. Haley discusses mercury toxicity as a causal factor in Autism. He also discusses the two primary sources of mercury toxicity: vaccines &amp; dental amalgams.Source:F.A.I.R. Autism Media http://www.autismmedia.orgVaccine Information and Awareness sites:http://thinktwice.com/http://www.vaclib.org/http://www.whale.to/vaccines.htmloctomedia Mercury toxicity Autism link',tags:'octomedia, Mercury, toxicity, toxin, toxic, Autism, link, poison, dental, amalgams, vaccines, death, health',thumbnail_url:'http://i.ytimg.com/vi/GQYISvsgq6s/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/GQYISvsgq6s/responses',ord:'15',mid:'31306'},{id:'RbcngSD0K90',title:'Part 2: Mercury Toxicity &amp; Autism',author:'octomedia',real_length:'268',length_seconds:'04:28',rating_avg:'4.712329',rating_count:'73',view_count:'11077',description:'Mercury toxicity &amp; Autism  Part 2Dr. Boyd Haley is a professor and chair of the chemistry department at the University of Kentucky. In this interview, Dr. Haley discusses mercury toxicity as a causal factor in Autism. He also discusses the two primary sources of mercury toxicity: vaccines &amp; dental amalgams.Source:F.A.I.R. Autism Media http://www.autismmedia.orgVaccine Information and Awareness sites:http://thinktwice.com/http://www.vaclib.org/http://www.whale.to/vaccines.htmloctomedia Mercury toxicity Autism link',tags:'octomedia, Mercury, toxicity, toxin, toxic, Autism, link, poison, dental, amalgams, vaccines, death, health',thumbnail_url:'http://i.ytimg.com/vi/RbcngSD0K90/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/RbcngSD0K90/responses',ord:'16',mid:'31307'},{id:'7v0s8XHFSBo',title:'Part 3: Mercury Toxicity &amp; Autism',author:'octomedia',real_length:'351',length_seconds:'05:51',rating_avg:'4.733333',rating_count:'90',view_count:'8899',description:'Mercury Toxicity &amp; Autism Part 3 Dr. Boyd Haley is a professor and chair of the chemistry department at the University of Kentucky. In this interview, Dr. Haley discusses mercury toxicity as a causal factor in Autism. He also discusses the two primary sources of mercury toxicity: vaccines &amp; dental amalgams.Source:F.A.I.R. Autism Media http://www.autismmedia.orgVaccine Information and Awareness sites:http://thinktwice.com/http://www.vaclib.org/http://www.whale.to/vaccines.htmloctomedia Mercury toxicity Autism link toxin',tags:'octomedia, Mercury, toxicity, toxin, toxic, Autism, link, poison, dental, amalgams, vaccines, death, health',thumbnail_url:'http://i.ytimg.com/vi/7v0s8XHFSBo/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/7v0s8XHFSBo/responses',ord:'17',mid:'31308'},{id:'f74xvtRijMc',title:'Ron Paul On Immunization Shots',author:'AK47FULLAUTO',real_length:'107',length_seconds:'01:47',rating_avg:'4.8',rating_count:'125',view_count:'11011',description:'Ron Paul discusses Immunization Shots',tags:'Immunization, Shots, Ron, Paul',thumbnail_url:'http://i.ytimg.com/vi/f74xvtRijMc/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/f74xvtRijMc/responses',ord:'19',mid:'31310'},{id:'auLHndzBl4g',title:'AIDS HIV CREATED BY AMERICA',author:'ashker88',real_length:'214',length_seconds:'03:34',rating_avg:'4.2772727',rating_count:'220',view_count:'35862',description:'khalid yasin',tags:'AIDS, HIV, AMERICA, khalid, yasin, bush, islam, muslim, terrorist',thumbnail_url:'http://i.ytimg.com/vi/auLHndzBl4g/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/auLHndzBl4g/responses',ord:'20',mid:'31311'},{id:'CDxZ7PX8YGI',title:'Robert Gallo: The Man That Created AIDS',author:'DrLeonardHorowitz',real_length:'515',length_seconds:'08:35',rating_avg:'4.547344',rating_count:'866',view_count:'177593',description:'Where did AIDS come from? Some say it doesn\'t matter, as long as we find a cure. But what if the man and money that created it, are still spreading it along with lies and half-truths? Watch this clip from In Lies We Trust: The CIA, Hollywood &amp; Bioterrorism, to learn where AIDS really originated.',tags:'AIDS, Gallo, HIV, Cancer, Viruses, Retroviruses, Bioterrorism, Healthcare, CDC, NCI, National, Academy, of, Sciences',thumbnail_url:'http://i.ytimg.com/vi/CDxZ7PX8YGI/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/CDxZ7PX8YGI/responses',ord:'21',mid:'31312'},{id:'lrtbRt6gdJQ',title:'The Flu Shot Vaccine Scam (Sweet Remedy clip)',author:'TheHealthRanger',real_length:'83',length_seconds:'01:23',rating_avg:'4.785714',rating_count:'56',view_count:'23228',description:'This short clip from the documentary Sweet Remedy (by Cori Brackett) features a short interview with Robert Scott Bell on the flu shot vaccine marketing scam.',tags:'vaccines, flu, shot, pharmaceuticals, vaccine, health, drug, marketing, junk, science, medicine',thumbnail_url:'http://i.ytimg.com/vi/lrtbRt6gdJQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/lrtbRt6gdJQ/responses',ord:'23',mid:'31313'},{id:'az5aAwr4ugE',title:'Do Flu Shots Work?  Ask A Vaccine Manufacturer.',author:'greenourvaccines',real_length:'118',length_seconds:'01:58',rating_avg:'4.6904764',rating_count:'168',view_count:'116588',description:'This is a phone call to a vaccine maker.  The caller asks questions about mercury and how well the flu shot actually works.',tags:'Flu, shot, vaccine, mercury, thimerosal, autism, chronic, illness',thumbnail_url:'http://i.ytimg.com/vi/az5aAwr4ugE/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/az5aAwr4ugE/responses',ord:'24',mid:'31314'},{id:'zcniJxck0gI',title:'UPDATE IN MORE INFO: MARCH 09',author:'kraken45',real_length:'459',length_seconds:'07:39',rating_avg:'4.781476',rating_count:'691',view_count:'111865',description:'H5N1 found in EU Annual Flu Vaccine-Claimed as accident.PLEASE go to mediafire  dot  com  sign in as H5N10 at mail dot com  password youtube. PLEASE download the 45 min mp3 radio interview regarding the contamination of the aanual flu vaccine with H5N1. This is IMPOSSIBLE to have been an accidental contamination as the annual flu vaccine and H5N1 would ever even be in the same building let alone same lab.H5N1 is a level 4 virus and will only be held in a Bio Weapons Lab under the strictest conditions.  H3N2 is a level 3 and used in many labs.18 EU labs received contaminated vaccine which proved 100 fatality when a batch was LUCKILY tested by technicians in Czechoslovakia. These lab tecs are now in quarantine.I intend to put up a youtube with this interview but it is too long to get it all across.WORD OF MOUTH and people power are needed to spread this information which has is as usual been BLACKED OUT BY OUR GREAT FREEDOM LOVING MEDIA.Please send to all in your address books to help spread info.It is imperative that we start building our immune systems now.  The end of the radio show tells you how.URGENT UPDATE LINK.http://www.mediafire.comlogin details     H5N10  at mail dot com   password   youtube.Flu Mist a popular over the counter live flu vaccine has been found to contain two H5N1 DNA markers, these markers seem to have been sewn into the flu mist vaccine to ensure that H5N1 or another strain of Avian Flu goes pandemic.This is going to cause major problems before long, it is imperative that people are warned about flu mist.',tags:'H5N1, flu, virus, deadly, nwo, depopulation, chemtrails, spraying, mist',thumbnail_url:'http://i.ytimg.com/vi/zcniJxck0gI/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/zcniJxck0gI/responses',ord:'25',mid:'31315'},{id:'L38YMhP2YdQ',title:'Movie Exposes Drug Industry, Promotes Natural Healing',author:'OliviaHadassah',real_length:'180',length_seconds:'03:00',rating_avg:'4.948718',rating_count:'117',view_count:'7046',description:'\u0022It\'s a choice. You don\'t have to be sick.\u0022This message is the key. You must realize that you are responsible for your health, not your doctor, and only you can decide between life or death every time you pick up a fork.Prescription drugs cannot heal disease and they can\'t make you healthy. What you may not know is that nutrition can.This trailer to \u0022Food Matters\u0022 looks very promising.  By visiting the official website you can register to be notified when the film is released, which they claim will be soon, and they intend to make it viewable only at the site:http://www.foodmatters.tv/I hope this film lives up to its preview. I\'m pleased to see that Dr. Max Gerson\'s daughter is featured, who runs The Gerson Institute, a successful cancer treatment center that mainly employs vegetable juicing:http://www.gerson.org/For more info, visit my blog:Red Pill Reichhttp://redpillreich.blogspot.com/I am a nurse who is exposing the Illuminati\'s use of modern medicine to drug, poison and control millions in their pursuit of a New World Order.* Update, April 4, 2008:I am honored to have received the following correspondence:Hi Olivia,This is James here and I am the Producer Director of the film Food Matters. I am very happy that you like the trailer and I can assure you that based on your interests this film will live up to your expectations.We are finalizing post production at the moment and will be launching soon.Thanks for your support and we look forward to launching for you and all of those that you help educate about this very important message.Kind Regards,James',tags:'Food, Matters, cancer, AIDS, natural, healing, cure, depression, FDA, Big, Pharma, medical, drug, industry, nurse, New, World, Order, CIA',thumbnail_url:'http://i.ytimg.com/vi/L38YMhP2YdQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/L38YMhP2YdQ/responses',ord:'26',mid:'31316'},{id:'J7h-DPr_x2w',title:'Vaccinated By FORCE, NOW AUTISTIC',author:'OliviaHadassah',real_length:'277',length_seconds:'04:37',rating_avg:'4.7413793',rating_count:'290',view_count:'22979',description:'Unacceptable!This little girl was taken out of the arms of her mother who didn\'t want her vaccinated, forcibly given vaccines, and ended up in critical condition that very day!It is NOT the law that you must vaccinate your children (no matter what the doctor or schools tell you), and you can sign a form to make your child exempt.The law states that schools must accept your children under 1 of 3 possible exemptions, depending on your state:1. Religious - Vaccines are against your religion, no matter what religion your practice.  You do not need to list a religion.2. Philosophical - You don\'t believe in vaccines, you don\'t think they\'re safe, you don\'t think they\'ve been tested enough, etc.3. Medical - Your child has an autoimmune disease or had a negative reaction to a vaccine in the past.Under such conditions it is dangerous to vaccinate a child and it states in the vaccine insert not to vaccinate under these circumstances, but doctors and nurses are NOT taught this so you must be firm!Vaccinations are a school policy, NOT the LAW.  If you choose not to vaccinate, the law is on your side.For more info on this medical topic and many others, visit my blog:Red Pill Reichhttp://redpillreich.blogspot.com/I am a nurse who is exposing the Illuminati\'s use of modern medicine to drug, poison and control millions in their pursuit of a New World Order.Vaccination exemption forms for all 50 US states:http://www.vaclib.org/exemption.htm(Click on your state.)',tags:'vaccines, autism, flu, shot, brain, damage, Big, Pharma, neurological, side, effects, eugenics, population, control, NWO, nurse, drugs',thumbnail_url:'http://i.ytimg.com/vi/J7h-DPr_x2w/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/J7h-DPr_x2w/responses',ord:'27',mid:'31317'},{id:'rE8kmifM6HU',title:'Government Scientists Hide Vaccine/Autism Link',author:'OliviaHadassah',real_length:'449',length_seconds:'07:29',rating_avg:'4.8313255',rating_count:'166',view_count:'7260',description:'There is ample scientific proof that ethyl mercury, added to vaccines since the 1930\'s, causes brain damage.The flu vaccine still contains the full load of mercury and is given to babies twice within their first year of life, then annually thereafter.Would you rather see your child develop autism or the flu?For more info, visit my blog:Red Pill Reichhttp://redpillreich.blogspot.com/I am a nurse who is exposing the Illuminati\'s use of modern medicine to drug, poison and control millions in their pursuit of a New World Order.',tags:'vaccines, autism, flu, shot, brain, damage, Big, Pharma, neurological, side, effects, eugenics, population, control, NWO, nurse, drugs',thumbnail_url:'http://i.ytimg.com/vi/rE8kmifM6HU/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/rE8kmifM6HU/responses',ord:'28',mid:'31318'},{id:'npWPwLcUyw0',title:'Shocking True Story',author:'stelioshajiioannou',real_length:'410',length_seconds:'06:50',rating_avg:'4.914591',rating_count:'281',view_count:'43688',description:'This news item is a shocking story about how the US government is killing it\'s own soldiers, by giving them shot of a vaccine that is causing severe reactions and illnesses.How can any civilised government do this to it\'s own people.Just imagine the horror they are inflicting upon the people of Iraq.http://911forum.org.ukhttp://nkuk.org',tags:'usa, cia, 911, 7/7, 9/11, nato, iraq, israel, zionist, nazi, apartheid, david, icke, alex, jones, bill, hicks',thumbnail_url:'http://i.ytimg.com/vi/npWPwLcUyw0/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/npWPwLcUyw0/responses',ord:'29',mid:'31319'},{id:'FPI7zdGdqo4',title:'Most Astonishing Health Disaster of the 20th Century',author:'mercola',real_length:'310',length_seconds:'05:10',rating_avg:'4.548311',rating_count:'2132',view_count:'550091',description:'For over 100 years conventional medicine has seized control of the US health care system and as a result we have over 800,000 people who are killed by interacting with this system.  It is likely that over 50 million Americans have died prematurely from this abuse.',tags:'dr, mercola, mercola.com, doctor, metabolic, health, diet, nutrition, natural, cure, remedy',thumbnail_url:'http://i.ytimg.com/vi/FPI7zdGdqo4/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/FPI7zdGdqo4/responses',ord:'30',mid:'31320'},{id:'wg-52mHIjhs',title:'Bayer Exposed ( HIV Contaminated Vaccine )',author:'octomedia',real_length:'197',length_seconds:'03:17',rating_avg:'4.9017415',rating_count:'804',view_count:'181556',description:'http://www.whale.to/vaccines.html[Video] Bayer Sells AIDS-Infected Drug Banned in U.S. in Europe, Asia - Unearthed documents show that the drug company Bayer sold millions of dollars worth of an injectable blood-clotting medicine -- Factor VIII concentrate, intended for hemophiliacs -- to Asian, Latin American, and some European countries in the mid-1980s, although they knew that it was tainted with AIDS. Bayer knew about the fact that the drug was tainted and told the FDA to keep things under wraps while they made a profit off of a drug that infected its patients.  If these allegations are true, then both Bayer and the FDA are at fault for this catastrophe. FDA regulators helped to keep the continued sales hidden, asking the company that the problem be \'\'quietly solved without alerting the Congress, the medical community and the public,\'\' according to the minutes of a 1985 meetingoctomediaVaccine Information and Awareness sites:http://thinktwice.com/http://www.vaclib.org/',tags:'octomedia, contaminated, vaccine, Bayer, Exposed, HIV, AIDS, LIES, Infected, Drug, profit, KILLER, KILLED',thumbnail_url:'http://i.ytimg.com/vi/wg-52mHIjhs/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/wg-52mHIjhs/responses',ord:'32',mid:'31321'},{id:'pLYrSfnsqb0',title:'Chemical Dumbing Down of America',author:'aenfroy87',real_length:'600',length_seconds:'10:00',rating_avg:'4.2705226',rating_count:'2144',view_count:'117597',description:'http://www.fluoridealert.orghttp://www.infowars.comhttp://www.prisonplanet.comWhy is America so brainwashed by the corporate media? Why do we care more about American Idol and sports games than being poisoned with mercury in our vaccinations and sodium fluoride in our water supply? America needs to wake up and get the facts about our chemical manipulation before it\'s too late.Check out my channel for similar videos.Music: Pink Floyd - Sheep/Us and ThemFAIR USE NOTICE: We are making this material available in our efforts to advance understanding of environmental, political, human rights,economic, democracy, scientific, and social justice issues, etc. We believe this constitutes a \u0022fair use\u0022 of any such copyrighted material as provided for in section 107 of the US Copyright Law. In accordance with Title 17 U.S.C. Section 107, the material on this site is distributed without profit to those who have expressed a prior interest in receiving the included information for research and educational purposes.',tags:'chemical, dumbing, down, America, fluoride, mercury, thimerosal, vaccines, autism, new, world, order, us, dumb, alex, jones, media, propaganda, mind, control, news, politics, analysis, grassroots, documentary, commentary',thumbnail_url:'http://i.ytimg.com/vi/pLYrSfnsqb0/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/pLYrSfnsqb0/responses',ord:'33',mid:'31322'},{id:'8cAaBoVvB6E',title:'Secret Vaccinations!!!',author:'Truthspeaker74',real_length:'411',length_seconds:'06:51',rating_avg:'4.977528',rating_count:'89',view_count:'1441',description:'Please Comment Rate and share this Information with Everyone Possible~ Thankyou TS74 ~',tags:'Vaccinations, Millitary, Secret, Government, Projects, Flu, Jabs, H5N1, Masonic, Cults, Truth, 911, Facts, Peoples, Freedom, Life, Endtimes, 2012, New, Begining, Science, Music, Love, Peace, Knollege, World, Order, Global, Control, Sheep, Zionist, Evil, Negative, Losers, XFactor, Television, Mind, Oblivion, Togetherness, United, Always',thumbnail_url:'http://i.ytimg.com/vi/8cAaBoVvB6E/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/8cAaBoVvB6E/responses',ord:'34',mid:'31323'}]},
		initialize: function () {this.createP()}

};
var IDTVLBDataSource9b55cccc65IF = function () {IDTVLBDataSource9b55cccc65.initialize.apply(IDTVLBDataSource9b55cccc65, []);};
if (document.getElementById('IDTVP_9b55cccc65'))
	IDTVLBDataSource9b55cccc65IF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource9b55cccc65IF, true);
else
	window.attachEvent("onload", IDTVLBDataSource9b55cccc65IF);