function serieTuneInObj(){
	this.tunein={	
		'mydadsays':' ','2brokegirls':' ','alcatraz':'lunes 10PM','americasbestdancecrew':' ','areyoutherechelsea':'miércoles 830PM','betterwithyou':' ','californication':' ','chase':' ','chuck':' ','coldcase':' ','er':' ','eleventhhour':' ','emmyawards':' ','flashpoint':' ','friends':' ','fringe':' ','gilmoregirls':' ','gossipgirl':' ','harryslaw':' ','hopeforhaitinow':' ','humantarget':' ','ihatemyteenagedaughter':'jueves 9PM','knightrider':' ','menofacertainage':' ','mike&molly':' ','nikita':' ','outsourced':' ','peopleschoiceawards2010':' ','peopleschoiceawards2011':' ','peopleschoiceawards2012':' ','personofinterest':' ','privileged':' ','pushingdaisies':' ','serieshome':' ','smallville':' ','sororityforever':' ','suburgatory':' ','supernatural':'miércoles 10PM','terminatorthesarahconnorchronicles':' ','thebigbangtheory':' ','theellendegeneresshow':' ','thelword':' ','thementalist':' ','themiddle':' ','thenewadventuresofoldchristine':' ','theoc':' ','thesecretcircle':' ','thesopranos':' ','thevampirediaries':' ','thirdwatch':' ','tmz':' ','trauma':' ','twoandahalfmen':' ','v':' ','warehouse13':' ','withoutatrace':' ',		"":""
    };
     this.returnTuneIn = function(name){
    	return this.tunein[name];
   }
}
function getSerieTuneIn(name){

    var obj = new serieTuneInObj();
    
    try{
        return obj.returnTuneIn(name);
    }catch (err){
        return false;	
    }
}
