// JavaScript Document


function viewImage(theImage) { 
	features = 'resizable=yes,width=800,height=500,scrollbars=yes,menubar=yes';
	subopen = true;
	newWindow = window.open('/includes/show_image.cfm?image='+theImage,'image',features);
	newWindow.focus();
}

function viewVideo(youtube,type) { 
	features = 'resizable=yes,width=550,height=600,scrollbars=yes,menubar=yes';
	subopen = true;
	newWindow = window.open('/includes/show_video.cfm?video_ID='+youtube+'&type='+type,'video',features);
	newWindow.focus();
}


