<!--

	function launchWin(url,w,h,scroll)
	{
		window.open(url,'openWin',"toolbar=no,width=" + w + ",height=" + h + ",left=100,top=100,status=no,menubar=no,location=no,scrollbars=" + scroll + ",resize=no");
	}

	function onFocusDefault(field,strDefault)
	{
		if (field.value == strDefault)
		{
			field.value = "";
		}
	}
	
	function onBlurDefault(field,strDefault)
	{
		if (field.value == "")
		{
			field.value = strDefault;
		}
	}	

	function numbersonly( e )
	{
		var unicode = e.charCode ? e.charCode : e.keyCode;

		//allow: backspace, tab, left, right
		if( unicode != 8 && unicode != 9 && unicode != 32 && unicode != 37)
		{
			//if not a number
			if( unicode < 48 || unicode > 57 )
			{
				return false;
			}
			else
			{
				return true;
			}
		}
		else
		{
			return true;
		}
	}	
//-->
