function show(id) {
	document.getElementById(id).style.display = "block";
}

function hide(id) {
	document.getElementById(id).style.display = "none";
}


function popVideo(url) {
	newwindow=window.open(url,'name','menubar=yes,scrollbars=yes,height=540,width=580,resizable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}
/*
$(document).ready(function() 
{
//Help toggle
	$("div#faq h4 a").toggle(
		function(){
			$(this).parent().next("div.answers").css({ display: "block" });
			$(this).parent().addClass("minus");
		},
		function(){
			$(this).parent().next("div.answers").css({ display: "none" });
			$(this).parent().removeClass("minus");
		}
	);
	
});
*/
