// Overlib variables
var ol_fullhtml= 1;
var win= 0;

pl('/images/ftv2folderclosed.gif');
pl('/images/ftv2folderopen.gif');
pl('/literature/images/czsm.png');
pl('/literature/images/nnsm.png');
pl('/literature/images/ensm.png');
pl('/literature/images/desm.png');

function pl (name) { //Pre-cache an image
	var img= new Image();
	img.src= name;
}

function showNav(title,text) {
    text= '<div><h4 style="margin:0px;padding:5px;text-align:center">'
		+title+'</h4><p style="font-size:10px">'+text+'</p></div>';
	overlib(text);
}

function wopen(url,x,y) { // Open window
    var w= x;
    var h= y;
	if (win!=0)
		win.close();
    win= window.open(url,"","top=0,left=0,toolbar=no,statusbar=no,width=" + w +",height=" +h);
	win.focus();
}

function toggle_expand(id)
{
	var iid= 'img' + id;
	var img=  document.getElementById(iid);
    var item= document.getElementById(id);
	if (img.src.match('closed')) {
		item.style.display= 'block';
		img.src= '/images/ftv2folderopen.gif';
	} else {
		item.style.display= 'none';
		img.src= '/images/ftv2folderclosed.gif';
	}
}
