/* IPDS */
function openForPrint(q) {
	var pp = "printable.php?"+q;
	window.open(pp);
}

function disableById(el) {
	document.getElementById(el).disabled = true;
}

function toggle_vis(obj) {
	var el = document.getElementById(obj);
    if (el.style.display != 'none' ) {
    	el.style.display = 'none';
    }
    else {
    	el.style.display = '';
    }
}

function toggle_vis_array(array) {
	for(var i=0; i<array.length; i++) {
		toggle_vis(array[i]);
	}
}

function toggleMenu(obj_clicked, menu) {
	var cls = obj_clicked.className;
	if(cls == 'expanded') {
		cls = 'page';
	}
	else {
		cls = 'expanded';
	}
	obj_clicked.className = cls;
	toggle_vis(menu);
}

function inDevelopment() {
	alert("This area of the site is not yet available.");
	return false;
}

function iprint(ptarget) { 
	ptarget.focus(); 
	ptarget.print(); 
}

function printIframe(iframe) {
	frames[iframe].focus();
	frames[iframe].print();
}

