	function setvid(project){
			var html = "";
			
			// sparklab
			var proj20vid = "<iframe src=\"http://player.vimeo.com/video/31628774?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff&amp;autoplay=1\" width=\"515\" height=\"283\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>";

			if (project=='20'){html = proj20vid}
	
			
			if (document.layers) {
    			document.layers['Viddiv'].innerHTML = html;
   			} 
			else if (document.all) {
				document.all['Viddiv'].innerHTML = html;
			} 
			else if (document.getElementById) {
				document.getElementById('Viddiv').innerHTML = html;
			}
			
		}
