/////////////////////////////////
//// array of videos to show ////
/////////////////////////////////
var video_Array = new Array();
video_Array[0] = "<embed src=\"http://blutube.policeone.com/player.swf?key=6249BC4600E99C35\" width=\"430\" height=\"370\" wmode=\"transparent\"></embed>"
video_Array[1] = "<embed src=\"http://blutube.policeone.com/player.swf?key=1B3E97B414BD2087\" width=\"430\" height=\"370\" wmode=\"transparent\"></embed>"

///////////////////////////////
//// array of video titles ////
///////////////////////////////
var video_title_Array = new Array();
video_title_Array[0] = "Police Security Expo 2009"
video_title_Array[1] = "Police Security Expo 2008"

////////////////////////////////
//// array of video credits ////
////////////////////////////////
var video_credits_Array = new Array();
video_credits_Array[0] = "Video Courtesy of <a href=\"http://www.policeone.com\" target=\"_blank\">PoliceOne.com</a>"
video_credits_Array[1] = "Video Courtesy of <a href=\"http://www.policeone.com\" target=\"_blank\">PoliceOne.com</a>"


function get_video(id)
{
	//alert(video_title_Array[id])
	var str = ""
	var vdiv = document.getElementById("vid_container")
	
	str += "<h2 class=\"h2_product_blue\">" + video_title_Array[id] + "</h2>"
	
	str += "<div style=\"padding:5px;background:#efefef;border:1px solid #afafaf;\">"
	str += video_Array[id]
	str += "<br />"
	str += "<span style=\"font-size:11px;\">" + video_credits_Array[id] + "</span>"
	str += "</div>"
	
	
	vdiv.innerHTML = str
	vdiv.style.display = "block";
	
	
	
}