function emailLinks()
{
	document.getElementById("e01").innerHTML = "wendy@groupthink.tv";
	document.getElementById("e02").innerHTML = "angela@groupthink.tv";
    document.getElementById("e01a").href = "mailto:wrosoff@aol.com";
    document.getElementById("e02a").href = "mailto:akespinosa@yahoo.com";
}

function youtubeplayer1(target, id, playstate, width, height)
{
	var x="";
	x = '<object width="'+width+'" height="'+height+'">';
	x += '<param name="movie" value="http://www.youtube.com/v/'+id+'&autoplay='+playstate+'"></param>';
	x += '<param name="allowFullScreen" value="true"></param>';
	x += '<param name="allowscriptaccess" value="always"></param>';
	x += '<embed src="http://www.youtube.com/v/'+id+'&autoplay='+playstate+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed>';
	x += '</object>';
	document.getElementById(target).innerHTML = x;
}