//
	function pop( url,w,h )
	{
		window.open( url, 'PopupWindow', 'scrollbars,resizable,width=' + w + ',height=' + h).focus();
	}

	function popMenu( url,w,h )
	{
		window.open( url, 'PopupWindow', 'menubar,scrollbars,resizable,width=' + w + ',height=' + h).focus();
	}
//
