function stuWin(url,windowname)
{
window.open(url,'windowname','resizable=yes,toolbar=yes,scrollbars=yes,menubar=no,status=no,directories=no,location=no')
}



/* toggle for the categories of forms etc */
function Toggle(id) 
{
	if (document.getElementById)
	{ 
		target = document.getElementById(id); 
		if (target.style.display == "none")
		{ 
			target.style.display = ""; 
		}
		else
		{ 
			target.style.display = "none"; 
		} 
	} 
}





/* disable right click to stop them right clicking and save as-ing the forms.
function right(e)
{

	if (navigator.appName == 'Netscape' && 
		(e.which == 3 || e.which == 2))

	return false;

	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
	{
		alert("ah. i disabled that...");
		return false;
	
	}
	return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents 
	(Event.MOUSEDOWN);
	
window.onmousedown=right;
*/


