
		function WriteLayer(ID,parentID,whichMedia) {
		
		 if (document.layers) {
		   var oLayer;
		   if(parentID){
			 oLayer = eval('document.' + parentID + '.document.' + ID + '.document');
		   }else{
			 oLayer = document.layers[ID].document;
		   }
		   oLayer.open();
		   var check = ".mov";
		   var cont = whichMedia.match(check);
		   if(cont == check){
			  
		   oLayer.write('<embed src="'+ whichMedia + '" width="360" height="305"></embed>');
			}else if(cont<-1 && whichMedia=='pixelintro'){
				oLayer.write('<object type="application/x-shockwave-flash" width="400" height="270" data="http://www.vimeo.com/moogaloop.swf?clip_id=475236&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA">	<param name="quality" value="best" />	<param name="allowfullscreen" value="true" />	<param name="scale" value="showAll" />	<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=475236&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object><br /><a href="http://www.vimeo.com/475236/l:embed_475236">pixelIntro</a> from <a href="http://www.vimeo.com/user335338/l:embed_475236">lebustamante</a> on <a href="http://vimeo.com/l:embed_475236">Vimeo</a>');
				}else{
			oLayer.write('<img src="'+ whichMedia + '" width="640" height="480" alt="'+whichmedia+'_temp"/>');
		  //'<embed src="'+ whichMediaPublish + '" width="32" height="32">'
			
			}
		   oLayer.close();
		 }
		 else if (parseInt(navigator.appVersion)>=5&&navigator.appName=="Netscape") {
			 var check = ".mov";
		   var cont = whichMedia.match(".mov");
		   if(cont == check){
			document.getElementById(ID).innerHTML = '<embed src="'+ whichMedia + '" width="360" height="305"></embed>';
		  //'<embed src="'+ whichMediaPublish + '" width="32" height="32">';
			}else if(whichMedia.match("vid_eo")){
				
				document.getElementById(ID).innerHTML ='<object type="application/x-shockwave-flash" width="400" height="270" data="http://www.vimeo.com/moogaloop.swf?clip_id=475236&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA">	<param name="quality" value="best" />	<param name="allowfullscreen" value="true" />	<param name="scale" value="showAll" />	<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=475236&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object>';
					
				}else{
			document.getElementById(ID).innerHTML = '<img src="'+ whichMedia + '" width="640" height="480"/>';
		  //'<embed src="'+ whichMediaPublish + '" width="32" height="32">';
			
			}
		   
		 }
		 else if (document.all) document.all[ID].innerHTML = '<embed src="'+ whichMedia + '" width="32" height="32">';
		}