function openwindow(video)
{
	window.open("video.php?v=" + video,"mywindow","width=425,height=344");
}


function changetxt(){


	var imgarray = new Array("/workplace_stress.jpg","/conflict_resolution.jpg","/customer_service.jpg","/attire.jpg","/attitude.jpg","/meeting_objectives.jpg","/camaraderie.jpg","/public_speaking.jpg","/negative_emotions.jpg","/etiquette.jpg");
	var h3array = new Array("Stress in the Workplace","Conflict Resolution","Customer Service Issues","Business Attire","Team Attitude","Clear Meeting Objectives","Camaraderie","Public Speaking","Emotional?","Business Etiquette");
	var textarray = new Array("Job stress seriously impairs productivity and morale.","The atmosphere at work is strained due to interpersonal conflict amongst co-workers.","Customer Service complaints (internal or external), outnumber Customer Service Compliments.","Confusion in your organization regarding appropriate business, and/or appropriate business casual attire. ","Apathy has replaced empathy; the attitude of teamwork has ceased to exist.","People leave meetings uncertain of the objective(s), or can't recall what was discussed.","Your office/staff needs a day devoted to encouraging cohesion and build camaraderie.","Public speaking opportunities are viewed and avoided as if it were a dreaded disease.","Some of your colleagues are not well versed in managing negative emotions.","Your &quot;high tech - low touch&quot; business has caused a breakdown in personal interaction.");
	var linkarray = new Array("workplace_stress.php","conflict_resolution.php","customer_service.php","attire.php","team_attitude.php","meeting_objectives.php","camaraderie.php","public_speaking.php","negative_emotions.php","etiquette.php");
	
	var l = imgarray.length;
var textnum = Math.floor(l*Math.random()); 
	
	for(i=1;i<=10;i++){
	var newHTML = "<img src='images" + imgarray[textnum] + "' width='72' height='72' alt='" + h3array[textnum] + "' class='img1'><h3>" + h3array[textnum] + "</h3><p>" + textarray[textnum] + " <a href='" + linkarray[textnum] + "' title='More about " + h3array[textnum] + "'>More&hellip;</a></p>";
	if(textnum == 9){
		textnum = 0;
	} else {
	textnum = textnum+1;
	}

	if(i <= 3){	
	document.getElementById('insert' + i).innerHTML = newHTML;
	}
		}

}

