function solutionSelect(obj) {
	var solution = obj.options[obj.selectedIndex].value;
	if(solution!=0) {
		window.location.href = "solutions/" + solution;
	}
}

function playOverview(type) {
	if(type=="quicktime") {
		var video = window.open("video_overview_q.html","Overview","height=260,width=320,scrollbars=no,toolbar=no,menubar=no,resizable=1");
	} else if(type=="windowsmedia") {
		var video = window.open("video_overview_wm.html","Overview","height=286,width=320,scrollbars=no,toolbar=no,menubar=no,resizable=1");
	}
	video.focus();
}

function playPromo(type) {
	if(type=="quicktime") {
		var video = window.open("video_promo_q.html","Promo","height=260,width=320,scrollbars=no,toolbar=no,menubar=no,resizable=1");
	} else if(type=="windowsmedia") {
		var video = window.open("video_promo_wm.html","Promo","height=286,width=320,scrollbars=no,toolbar=no,menubar=no,resizable=1");
	}
	video.focus();
}

function openResource(link) {
	var resource = window.open(link,"Resource","height=600,width=800,scrollbars=yes,toolbar=yes,titlebar=yes,location=yes,menubar=yes,resizable=yes");	
	resource.focus();
}

function print(page) {
	var printpage = window.open(page,"Print","height=550,width=750,scrollbars=yes,toolbar=yes,menubar=yes,resize=no");
	printpage.focus();
}

function sri() {
	
ranimg = new Array(4);
ranimg[0] = "<img src='site_images/p_gym.jpg' alt='Life Saving Solutions' border='0'>";
ranimg[1] = "<img src='site_images/p_corporate.jpg' alt='Life Saving Solutions' border='0'>";
ranimg[2] = "<img src='site_images/p_fire.jpg' alt='Life Saving Solutions' border='0'>";
ranimg[3] = "<img src='site_images/p_school.jpg' alt='Life Saving Solutions' border='0'>";

index = Math.floor(Math.random() * ranimg.length);

document.write(ranimg[index]);

}