// JavaScript Document

	
	function openPopupNone(url, width, height)
	{
		var optionString = "resizable=yes,scrollbars=yes,location=no,toolbar=no,menubar=no,status=no,width=" + width + ",height=" + height;
		window.open(url, '', optionString);
	}		

	function openPopupAll(url, width, height)
	{
		var optionString = "resizable=yes,scrollbars=yes,location=yes,toolbar=yes,menubar=yes,status=yes,width=" + width + ",height=" + height;
		window.open(url, '', optionString);
	}	
	