/*
	SCCS Javascript
	(C) 2oo1 Shep for SCCS
*/
	function popup(url,w,h)
	{
		if (w == null) w = 450;
		if (h == null) h = 400;
		poppie = window.open('popup.php?'+url,'SCCS','scrolling=auto,width='+w+',height='+h);
		poppie.resizeTo(w,h);
		poppie.moveTo(20,20);
		poppie.focus();
	}

