function NWMVideo_video1(){
	var 	 divId_ ='NWMVideo'; //match div layer
	var movie_name_ = divId_+'|';
	var     videoW_ = 150; 
	var     videoH_ = 325;
	var  videoPath_ = 'temple-dis-home-katie-150x325_4.flv';
	//
	var player=new NWMVideoSWFObject('nwmvideo.swf',movie_name_,videoW_,videoH_,'9');player.add_('allowScriptAccess','always');player.add_('swliveconnect','true');player.add_('wmode','transparent');player.add('videoPath_',videoPath_);player.add('videoW_',videoW_);player.add('videoH_',videoH_);player.add('videoId_',divId_);player.add('libBB_','0600.7');
	// CLIENT CONTROLLED FEATURES //
	player.add(          'autoPlay_', 'true');   //If set to true, the video will begin playing as soon as it loads.
	player.add(    'autoPlayButton_', 'true');   //Show large play button when autoplay is set to false.
	player.add(        'autoRewind_', 'false');  //Resets the video to the first frame when finished playing.			
	player.add('hoursDelayInterval_', 0);        //Use a cookie to set number of hours before video plays again.  Not to be combined with playOncePerVisit.
	player.add( 'daysDelayInterval_', 0);        //Use a cookie to set number of days before video plays again.  Not to be combined with playOncePerVisit.
	player.add('weeksDelayInterval_', 0);        //Use a cookie to set number of days before video plays again.  Not to be combined with playOncePerVisit.
	player.add(  'playOncePerVisit_', 'false');  //This overrides hours,days,weeks delay intervals.
	player.add(     'closeWhenDone_', 'false');  //If set to true, the player will remove itself from the page when done playing.
	player.add(                'cc_', '0');	     //Closed Caption -- 0 = disabled (no button), 1 = enabled (off by default), 2 = enabled (on by devault).  
	player.add(         'hyperlink_', '');		 //Type in a full url to have the live actor be a big link.  Does not open in a new window.
	player.add(        'portalLink_', '');       //Sets the link of the Actor Store button (available for portal members only.)  Does not open in a new window.
	player.add(        'dropShadow_', 'false');  //Set to true to add a shadow to your actor.
	// END CLIENT CONTROLLED FEATURES//
	// OPTIONAL EXTERNAL FILES
	player.add(     'ccPath_', 'captions.xml');	 //Name of the xml file to load closed captions from. 
	player.add(   'cuePath_', 'cuepoints.xml');	 //Name of the xml file to load closed cue points from. 
	player.write(divId_);
}
function place_NWMVideo(){
	NWMVideo_video1();
}
if (window.addEventListener)
	window.addEventListener("load",function(){place_NWMVideo()},false);
if (window.attachEvent)
	window.attachEvent("onload",place_NWMVideo);
