function showFeatsAlert() {
	$("#newFeats").slideDown("slow");
}

function hideFeatsAlert() {
	$("#newFeats").slideUp("slow");
}

function popUp(URL, title) {
	attrs = 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,';
	attrs += 'resizable=1,width=650,height=650'
	var popup = window.open(URL, title, attrs);
}

function helpPopUp(anchor) {
	popUp('help.php?popup=true' + anchor, 'help');
}

function exPopUp(anchor) {
	popUp('examples.php?popup=true' + anchor, 'examples');
}





