/* $Id$ */

function toggleHint(titlediv) {
	titlediv = $(titlediv);
	var contentdiv = $(titlediv).next('div.content');
	
	if (contentdiv.is(':hidden'))
		titlediv.css('background-image', 'url(/images/tri_d.png)');
	else
		titlediv.css('background-image', 'url(/images/tri_r.png)');
	contentdiv.slideToggle('normal');
	return false;
}

function popUp(url, type, width, height, windowName) {
	var options = "";
	if (type=="console") options="resizable,scrollbars,height="+height+",width="+width;
	if (type=="fixed") options="status,height="+height+",width="+width;
	if (type=="elastic") options="toolbar,menubar,scrollbars,resizable,location,height="+height+",width="+width;
	window.open(url, windowName, options);
}

