/*
* 	inspiration.net
*	edreamz 2006
* 	jjohnson
*/

function toggleResearch(el){
		var thisel = (el == 'undefined')? el : "research" ; 
		theel = document.getElementById(thisel);
		if (theel.style.display == "block"){
			theel.style.display = "none";
			}else{
				theel.style.display = "block";
				}
	}


function popUpVideo(videoPath,picturePath) {
	var newpath = '/video.cfm?vidPath='+videoPath+'&picPath='+picturePath;
	//alert('newpath = '+newpath);
	var n=open(newpath,'Stories','toolbar=no,directories=no,status=no,menubar=no,scrolling=no,scrollbars=no,resizable=no,width=195,height=146,top=20,left=20');
	n.focus();
	}
