// JavaScript Document
function expand(name) {
    collapse_all();
	document.getElementById( name ).style.display = "block";
}

function collapse(name) {
	document.getElementById( name ).style.display = "none";
}


function faq_print(id) {
	var leftPos = (screen.availWidth-650) / 2;
	var topPos = (screen.availHeight-550) / 2;
	Press1Win = window.open('site_print.php?faq=' + id,'','width=650,height=550,scrollbars=no,resizable=no,titlebar=0,top=' + topPos + ',left=' + leftPos);
}

function faq_slide(id) {
	var leftPos = (screen.availWidth-700) / 2;
	var topPos = (screen.availHeight-650) / 2;
	Press1Win = window.open('site_slideshow.php?faq=' + id,'','width=700,height=650,scrollbars=no,resizable=no,titlebar=0,top=' + topPos + ',left=' + leftPos);
}

